Merge pull request #2126 from ngie-eign:clang-add-more-strict-warnings

PiperOrigin-RevId: 235220570
This commit is contained in:
Gennadiy Civil 2019-02-22 16:18:28 -05:00
commit b6473fcf90

View File

@ -81,6 +81,7 @@ macro(config_compiler_and_linker)
set(cxx_base_flags "-Wall -Wshadow -Werror -Wno-error=sign-conversion")
set(cxx_exception_flags "-fexceptions")
set(cxx_no_exception_flags "-fno-exceptions")
set(cxx_strict_flags "-W -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wredundant-decls")
elseif (CMAKE_COMPILER_IS_GNUCXX)
set(cxx_base_flags "-Wall -Wshadow -Werror")
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0.0)