File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,13 @@ option(CONNECTION_MACHINE_BUILD_TESTS "Build Connection Machine Tests" OFF)
41
41
option (CONNECTION_MACHINE_CODE_COVERAGE "Enable code coverage reporting" OFF )
42
42
option (RUN_TRACY_PROFILER "Enable runtime profiler" OFF )
43
43
44
+ # ====================================== SILENCE WARNINGS =======================================
45
+
44
46
if (MSVC )
45
47
# C4244: 'conversion' conversion from 'type1' to 'type2', possible loss of data
46
48
# C4267: 'var' conversion from 'size_t' to 'type', possible loss of data
47
- add_compile_options (/wd4244 /wd4267 )
49
+ # C4018: 'var' signed/unsigned mismatch
50
+ add_compile_options (/wd4244 /wd4267 /wd4018 )
48
51
endif ()
49
52
50
53
# ======================================= COVERAGE SETUP ========================================
You can’t perform that action at this time.
0 commit comments