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


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to