diff options
| author | Stephen D. Huston <shuston@apache.org> | 2010-06-17 20:59:45 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2010-06-17 20:59:45 +0000 |
| commit | d6c80fc5be356eae8bd6381fd19fb019a43510b2 (patch) | |
| tree | dac87b9868bfec02acfde97ce011c57d07a970f3 /cpp/src | |
| parent | dc7876e6ab93efd94d112585b6ae2ce54690812b (diff) | |
| download | qpid-python-d6c80fc5be356eae8bd6381fd19fb019a43510b2.tar.gz | |
Change warning C4996 from level 1 to level 4. This is the "warning C4996: 'std::equal': Function call with parameters that may be unsafe" warning. The "safe" replacements are only available on Windows, so can't be portably used. If the conditions are violated run-time errors are thrown, so these aren't totally ignored. Changing them to level 4 makes it possible for someone to easily find them all in a build if desired.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@955742 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cpp/src/CMakeLists.txt b/cpp/src/CMakeLists.txt index 70835746fb..44dea3a155 100644 --- a/cpp/src/CMakeLists.txt +++ b/cpp/src/CMakeLists.txt @@ -452,7 +452,6 @@ if (CMAKE_SYSTEM_NAME STREQUAL Windows) /D "_CRT_NONSTDC_NO_WARNINGS" /D "NOMINMAX" /D "WIN32_LEAN_AND_MEAN" - /D "_SCL_SECURE_NO_WARNINGS" /wd4244 /wd4800 /wd4355 |
