[clang] e4ad1f9 - [NFC] Remove extra semicolons in clang/lib/APINotes/APINotesFormat.h
Evan Wilde via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 21 16:20:30 PDT 2023
Author: Evan Wilde
Date: 2023-07-21T16:19:53-07:00
New Revision: e4ad1f976d1209b8ff233e6aab924f92b7484c2d
URL: https://github.com/llvm/llvm-project/commit/e4ad1f976d1209b8ff233e6aab924f92b7484c2d
DIFF: https://github.com/llvm/llvm-project/commit/e4ad1f976d1209b8ff233e6aab924f92b7484c2d.diff
LOG: [NFC] Remove extra semicolons in clang/lib/APINotes/APINotesFormat.h
There are some trailing semicolons on namespaces in
clang/lib/APINotes/APINotesFormat.h. These result in warnings while
building and don't need to be there.
Reviewed By: compnerd
Differential Revision: https://reviews.llvm.org/D105049
Added:
Modified:
clang/lib/APINotes/APINotesFormat.h
Removed:
################################################################################
diff --git a/clang/lib/APINotes/APINotesFormat.h b/clang/lib/APINotes/APINotesFormat.h
index 6b76ecfc2567d9..a0a5efe8f9be17 100644
--- a/clang/lib/APINotes/APINotesFormat.h
+++ b/clang/lib/APINotes/APINotesFormat.h
@@ -220,7 +220,7 @@ using TagDataLayout =
// below)
llvm::BCBlob // map from name to tag information
>;
-}; // namespace tag_block
+} // namespace tag_block
namespace typedef_block {
enum { TYPEDEF_DATA = 1 };
@@ -231,7 +231,7 @@ using TypedefDataLayout =
// below)
llvm::BCBlob // map from name to typedef information
>;
-}; // namespace typedef_block
+} // namespace typedef_block
namespace enum_constant_block {
enum { ENUM_CONSTANT_DATA = 1 };
More information about the cfe-commits
mailing list