diff options
author | Brad King <brad.king@kitware.com> | 2021-09-29 13:57:30 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-09-29 13:57:47 (GMT) |
commit | 5bd94332c760a6f861b411273921b204076ab9a6 (patch) | |
tree | 0003e736df44c6b987e23e02b1317cb33d36ef7a /Tests | |
parent | 84673a8243be99af56573a7952235ffae956b1e0 (diff) | |
parent | 37859e32442bb433af9876963c92594d05fb64b3 (diff) | |
download | CMake-5bd94332c760a6f861b411273921b204076ab9a6.zip CMake-5bd94332c760a6f861b411273921b204076ab9a6.tar.gz CMake-5bd94332c760a6f861b411273921b204076ab9a6.tar.bz2 |
Merge topic 'clang-warnings'
37859e3244 Source: Fix clang -Wimplicit-fallthrough warnings
907d098838 Source: Fix clang -Wextra-semi warnings
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !6561
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLib/testUVRAII.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CMakeLib/testUVRAII.cxx b/Tests/CMakeLib/testUVRAII.cxx index 0607f44..7d21959 100644 --- a/Tests/CMakeLib/testUVRAII.cxx +++ b/Tests/CMakeLib/testUVRAII.cxx @@ -169,7 +169,7 @@ static bool testAllMoves() allTypes b(std::move(a)); allTypes c = std::move(b); return true; -}; +} static bool testLoopReset() { @@ -192,7 +192,7 @@ static bool testLoopReset() } return true; -}; +} static bool testLoopDestructor() { @@ -217,7 +217,7 @@ static bool testLoopDestructor() } return true; -}; +} int testUVRAII(int, char** const) { |