diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-06-26 18:52:09 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-06-26 18:52:09 +0000 |
commit | 37d2a00f4ca5689dac7fec2931fcef37556f5092 (patch) | |
tree | 52d672e68912c44904f92ecf3940b58ec6df2624 | |
parent | 246b6aa6763de8c617d564ef33123a8f3293a80e (diff) |
Remove spurious semicolons committed in r159216.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159218 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/ASTDiagnostic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/AST/ASTDiagnostic.cpp b/lib/AST/ASTDiagnostic.cpp index a5733237ef..fbeca43090 100644 --- a/lib/AST/ASTDiagnostic.cpp +++ b/lib/AST/ASTDiagnostic.cpp @@ -893,7 +893,7 @@ class TemplateDiff { ArgType = Iter->getAsType(); else if (!isVariadic) ArgType = DefaultTTPD->getDefaultArgument(); - }; + } /// GetExpr - Retrieves the template expression argument, including default /// arguments. @@ -1230,7 +1230,7 @@ public: ToOrigTST->getTemplateName().getAsTemplateDecl()); DiffTemplate(FromOrigTST, ToOrigTST); - }; + } /// MakeString - When the two types given are templated types with the same /// base template, a string representation of the type difference will be |