Passing right brace location to ActOnFinishCXXClassDef is redundant, since it gets passed to ActOnFinishCXXMemberSpecification too.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54567 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h
index 4274a1c..c5ee725 100644
--- a/lib/Sema/Sema.h
+++ b/lib/Sema/Sema.h
@@ -603,7 +603,7 @@
SourceLocation LBrac,
SourceLocation RBrac);
- virtual void ActOnFinishCXXClassDef(DeclTy *TagDecl,SourceLocation RBrace);
+ virtual void ActOnFinishCXXClassDef(DeclTy *TagDecl);
// Objective-C declarations.