summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2011-09-27 14:53:21 +0000
committerCharles E. Rolke <chug@apache.org>2011-09-27 14:53:21 +0000
commit314935e4b48d4c21439a3e9b230fe3a912dfd296 (patch)
treef970a1702fa8de5c8906de666d23aaeaf7ba0b24 /qpid/cpp/src
parent09026e185478bac54671399f40716ac9abac6571 (diff)
downloadqpid-python-314935e4b48d4c21439a3e9b230fe3a912dfd296.tar.gz
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. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1176412 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/CMakeLists.txt b/qpid/cpp/src/CMakeLists.txt
index d8496c5122..c8aedd4c60 100644
--- a/qpid/cpp/src/CMakeLists.txt
+++ b/qpid/cpp/src/CMakeLists.txt
@@ -598,6 +598,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL Windows)
/wd4244
/wd4800
/wd4355
+ /wd4267
)
if (SET_WIN32_WINNT)
add_definitions(/D "_WIN32_WINNT=0x0502")