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/Parse/ParseDeclCXX.cpp b/lib/Parse/ParseDeclCXX.cpp
index 2d885ce..abd432c 100644
--- a/lib/Parse/ParseDeclCXX.cpp
+++ b/lib/Parse/ParseDeclCXX.cpp
@@ -626,5 +626,5 @@
   // Leave the class scope.
   ExitScope();
 
-  Actions.ActOnFinishCXXClassDef(TagDecl, RBraceLoc);
+  Actions.ActOnFinishCXXClassDef(TagDecl);
 }