Skip to content

Commit f586da2

Browse files
committed
Fix command-line option
1 parent bb064db commit f586da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/cmake_modules/SetupCxxFlags.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ endif()
169169

170170
# Disable annoying "performance warning" about int-to-bool conversion
171171
if ("${COMPILER_FAMILY}" STREQUAL "msvc")
172-
set(CXX_COMMON_FLAGS "${CXX_COMMON_FLAGS} /Wd4800")
172+
set(CXX_COMMON_FLAGS "${CXX_COMMON_FLAGS} /wd4800")
173173
endif()
174174

175175
# if build warning flags is set, add to CXX_COMMON_FLAGS

0 commit comments

Comments
 (0)