From b328758058c47c6e194c05fbc961641a5c05a633 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 28 Jan 2009 12:02:35 +0000 Subject: [PATCH] Temporarily disabled VS warning C4100 to enable use to home in on the useful warnings that could do with resolving. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16afd2cbd..6d51f7f63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -535,7 +535,7 @@ ELSE(CMAKE_COMPILER_IS_GNUCXX) # FIXME: What are good aggressive warning flags for Visual Studio? # And do we need to further subcase this for different versions of VS? # CMake variables: MSVC60, MSVC70, MSVC71, MSVC80, CMAKE_COMPILER_2005 - SET(OSG_AGGRESSIVE_WARNING_FLAGS /W4 /wd4706 /wd4127) + SET(OSG_AGGRESSIVE_WARNING_FLAGS /W4 /wd4706 /wd4127 /wd4100) ELSE(MSVC)