Author: tfaber
Date: Sun Nov 17 19:45:32 2013
New Revision: 61020
URL:
http://svn.reactos.org/svn/reactos?rev=61020&view=rev
Log:
[CMAKE]
- Make warning C4229 (modifiers on data are ignored) an error
Modified:
trunk/reactos/cmake/msvc.cmake
Modified: trunk/reactos/cmake/msvc.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/msvc.cmake?rev=61020…
==============================================================================
--- trunk/reactos/cmake/msvc.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/msvc.cmake [iso-8859-1] Sun Nov 17 19:45:32 2013
@@ -46,8 +46,9 @@
# - C4098: void function returning a value
# - C4129: unrecognized escape sequence
# - TODO: C4133: incompatible types
+# - C4229: modifiers on data are ignored
# - C4700: uninitialized variable usage
-add_compile_flags("/we4022 /we4047 /we4098 /we4129 /we4700")
+add_compile_flags("/we4022 /we4047 /we4098 /we4129 /we4229 /we4700")
# Debugging
#if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")