We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 940a4c7 commit 27f1276Copy full SHA for 27f1276
cdk/CMakeLists.txt
@@ -152,6 +152,8 @@ if(MAINTAINER_MODE)
152
153
IF(MSVC)
154
155
+ # TODO: move to /Wall when code base is ready for this
156
+
157
# 4127 = conditional expression is constant (needed for do {...} while(false))
158
# 4512 = assignment operator could not be generated
159
# 4100 = unreferenced formal parameter
@@ -180,7 +182,7 @@ IF(MSVC)
180
182
# Note: 4520 only present on Visual Studio 12
181
183
184
add_compile_options(
- /Wall /wd4512 /wd4127 /wd4100
185
+ /W4 /wd4512 /wd4127 /wd4100
186
/wd4820 /wd4571 /wd4710 /wd4514 /wd4625 /wd4626 /wd4464 /wd4711 /wd4520
187
)
188
0 commit comments