Skip to content

Commit 88c189c

Browse files
committed
fix: more warnings in instrument-hooks
1 parent a91105f commit 88c189c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

core/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
3636
/wd4101 # unreferenced local variable (equivalent to -Wno-unused-variable)
3737
/wd4189 # local variable is initialized but not referenced (equivalent to -Wno-unused-but-set-variable)
3838
/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
3942
)
4043
endif()
4144

0 commit comments

Comments
 (0)