[clang-tools-extra] 201c646 - Remove extra '; ' to fix Wpedantic. NFCI.

Simon Pilgrim via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 22 04:14:44 PST 2020


Author: Simon Pilgrim
Date: 2020-01-22T12:08:57Z
New Revision: 201c646b2b9988cdebf6e95d523283009ae2e5ba

URL: https://github.com/llvm/llvm-project/commit/201c646b2b9988cdebf6e95d523283009ae2e5ba
DIFF: https://github.com/llvm/llvm-project/commit/201c646b2b9988cdebf6e95d523283009ae2e5ba.diff

LOG: Remove extra ';' to fix Wpedantic. NFCI.

Added: 
    

Modified: 
    clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp b/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp
index aad0ad94456a..c1b27a821ade 100644
--- a/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp
+++ b/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp
@@ -172,7 +172,7 @@ ReservedIdentifierCheck::GetDiagInfo(const NamingCheckId &ID,
                     diag << ID.second
                          << getMessageSelectIndex(Failure.Info.KindName);
                   }};
-};
+}
 
 } // namespace bugprone
 } // namespace tidy


        


More information about the cfe-commits mailing list