etcwilde created this revision. etcwilde added a reviewer: compnerd. etcwilde added a project: clang. etcwilde requested review of this revision. Herald added a subscriber: cfe-commits.
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. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D105049 Files: clang/lib/APINotes/APINotesFormat.h Index: clang/lib/APINotes/APINotesFormat.h =================================================================== --- clang/lib/APINotes/APINotesFormat.h +++ clang/lib/APINotes/APINotesFormat.h @@ -220,7 +220,7 @@ // 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 @@ // below) llvm::BCBlob // map from name to typedef information >; -}; // namespace typedef_block +} // namespace typedef_block namespace enum_constant_block { enum { ENUM_CONSTANT_DATA = 1 };
Index: clang/lib/APINotes/APINotesFormat.h =================================================================== --- clang/lib/APINotes/APINotesFormat.h +++ clang/lib/APINotes/APINotesFormat.h @@ -220,7 +220,7 @@ // 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 @@ // below) llvm::BCBlob // map from name to typedef information >; -}; // namespace typedef_block +} // namespace typedef_block namespace enum_constant_block { enum { ENUM_CONSTANT_DATA = 1 };
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits