Browse Source

Merge pull request #10133 from lat9nq/clang-shadow-and-fallthrough

CMakeLists: Enable more checks on Clang
nce_cpp
liamwhite 3 years ago
committed by GitHub
parent
commit
28126a6754
  1. 3
      src/CMakeLists.txt

3
src/CMakeLists.txt

@ -113,6 +113,9 @@ else()
$<$<CXX_COMPILER_ID:Clang>:-Wno-braced-scalar-init>
$<$<CXX_COMPILER_ID:Clang>:-Wno-unused-private-field>
$<$<CXX_COMPILER_ID:Clang>:-Werror=shadow-uncaptured-local>
$<$<CXX_COMPILER_ID:Clang>:-Werror=implicit-fallthrough>
$<$<CXX_COMPILER_ID:Clang>:-Werror=type-limits>
$<$<CXX_COMPILER_ID:AppleClang>:-Wno-braced-scalar-init>
$<$<CXX_COMPILER_ID:AppleClang>:-Wno-unused-private-field>
)

Loading…
Cancel
Save