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 /Source/cmFindLibraryCommand.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 'Source/cmFindLibraryCommand.cxx')
-rw-r--r-- | Source/cmFindLibraryCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFindLibraryCommand.cxx b/Source/cmFindLibraryCommand.cxx index bfa007c..ff04bab 100644 --- a/Source/cmFindLibraryCommand.cxx +++ b/Source/cmFindLibraryCommand.cxx @@ -247,7 +247,7 @@ struct cmFindLibraryHelper cmStrCat(this->PrefixRegexStr, name, this->SuffixRegexStr); this->DebugSearches.FailedAt(path, regexName); } - }; + } void DebugLibraryFound(std::string const& name, std::string const& path) { @@ -256,7 +256,7 @@ struct cmFindLibraryHelper cmStrCat(this->PrefixRegexStr, name, this->SuffixRegexStr); this->DebugSearches.FoundAt(path, regexName); } - }; + } }; namespace { |