Author: chug
Date: Tue Sep 27 14:53:21 2011
New Revision: 1176412

URL: http://svn.apache.org/viewvc?rev=1176412&view=rev
Log:
QPID-2574 Mismatch uint32_t / size_t

Suppress size mismatch warning in windows builds.
The /wd4267 switch can be turned off when -Wconversion is turned on in gcc 
builds.

Modified:
    qpid/trunk/qpid/cpp/src/CMakeLists.txt

Modified: qpid/trunk/qpid/cpp/src/CMakeLists.txt
URL: 
http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/CMakeLists.txt?rev=1176412&r1=1176411&r2=1176412&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/CMakeLists.txt (original)
+++ qpid/trunk/qpid/cpp/src/CMakeLists.txt Tue Sep 27 14:53:21 2011
@@ -598,6 +598,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL Windows)
       /wd4244
       /wd4800
       /wd4355
+      /wd4267
     )
     if (SET_WIN32_WINNT)
         add_definitions(/D "_WIN32_WINNT=0x0502")



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscr...@qpid.apache.org

Reply via email to