diff options
author | Sean McBride <sean@rogue-research.com> | 2021-09-24 15:52:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-09-28 13:59:24 (GMT) |
commit | 907d098838c99ee6c0c72ae0cdf1cc53dbf51ba2 (patch) | |
tree | 946823d6ed841b37acd144b829e24873447603b2 /Tests/CMakeLib/testUVRAII.cxx | |
parent | 2974ea7c3e9cbf9952d6c361bbcecb5027f69605 (diff) | |
download | CMake-907d098838c99ee6c0c72ae0cdf1cc53dbf51ba2.zip CMake-907d098838c99ee6c0c72ae0cdf1cc53dbf51ba2.tar.gz CMake-907d098838c99ee6c0c72ae0cdf1cc53dbf51ba2.tar.bz2 |
Source: Fix clang -Wextra-semi warnings
Diffstat (limited to 'Tests/CMakeLib/testUVRAII.cxx')
-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) { |