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 a91105f commit 88c189cCopy full SHA for 88c189c
core/CMakeLists.txt
@@ -36,6 +36,9 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
36
/wd4101 # unreferenced local variable (equivalent to -Wno-unused-variable)
37
/wd4189 # local variable is initialized but not referenced (equivalent to -Wno-unused-but-set-variable)
38
/wd4100 # unreferenced formal parameter (equivalent to -Wno-unused-parameter)
39
+ /wd4245 # signed/unsigned mismatch
40
+ /wd4132 # const object should be initialized
41
+ /wd4146 # unary minus operator applied to unsigned type
42
)
43
endif()
44
0 commit comments