[clang] 50472c4 - Remove extra ‘;’. NFC.
Michael Liao via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 15 14:22:11 PDT 2020
Author: Michael Liao
Date: 2020-04-15T17:22:03-04:00
New Revision: 50472c422cbbbbc6d27a4532a4025c4339fb6920
URL: https://github.com/llvm/llvm-project/commit/50472c422cbbbbc6d27a4532a4025c4339fb6920
DIFF: https://github.com/llvm/llvm-project/commit/50472c422cbbbbc6d27a4532a4025c4339fb6920.diff
LOG: Remove extra ‘;’. NFC.
Added:
Modified:
clang/include/clang/AST/RecursiveASTVisitor.h
Removed:
################################################################################
diff --git a/clang/include/clang/AST/RecursiveASTVisitor.h b/clang/include/clang/AST/RecursiveASTVisitor.h
index 10ea91ea9cfa..85eb6259a419 100644
--- a/clang/include/clang/AST/RecursiveASTVisitor.h
+++ b/clang/include/clang/AST/RecursiveASTVisitor.h
@@ -1993,7 +1993,7 @@ DEF_TRAVERSE_DECL(BindingDecl, {
DEF_TRAVERSE_DECL(MSPropertyDecl, { TRY_TO(TraverseDeclaratorHelper(D)); })
-DEF_TRAVERSE_DECL(MSGuidDecl, {});
+DEF_TRAVERSE_DECL(MSGuidDecl, {})
DEF_TRAVERSE_DECL(FieldDecl, {
TRY_TO(TraverseDeclaratorHelper(D));
More information about the cfe-commits
mailing list