Skip to content

Commit 4802133

Browse files
committed
Add back warning suppression that shouldn't have been removed
1 parent a3a4251 commit 4802133

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

googletest/cmake/internal_utils.cmake

+3
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ macro(config_compiler_and_linker)
7373
set(cxx_exception_flags "-EHsc -D_HAS_EXCEPTIONS=1")
7474
set(cxx_no_exception_flags "-EHs-c- -D_HAS_EXCEPTIONS=0")
7575
set(cxx_no_rtti_flags "-GR-")
76+
# Suppress "unreachable code" warning
77+
# http://stackoverflow.com/questions/3232669 explains the issue.
78+
set(cxx_base_flags "${cxx_base_flags} -wd4702")
7679
elseif (CMAKE_COMPILER_IS_GNUCXX)
7780
set(cxx_base_flags "-Wall -Wshadow -Werror")
7881
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0.0)

0 commit comments

Comments
 (0)