[NFC] Remove extra semicolons in clang/lib/APINotes/APINotesFormat.h
authorEvan Wilde <etceterawilde@gmail.com>
Fri, 21 Jul 2023 23:17:16 +0000 (16:17 -0700)
committerEvan Wilde <etceterawilde@gmail.com>
Fri, 21 Jul 2023 23:19:53 +0000 (16:19 -0700)
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

clang/lib/APINotes/APINotesFormat.h

index 6b76ecf..a0a5efe 100644 (file)
@@ -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 };