[cfe-commits] r159218 - /cfe/trunk/lib/AST/ASTDiagnostic.cpp

David Blaikie dblaikie at gmail.com
Tue Jun 26 11:52:09 PDT 2012


Author: dblaikie
Date: Tue Jun 26 13:52:09 2012
New Revision: 159218

URL: http://llvm.org/viewvc/llvm-project?rev=159218&view=rev
Log:
Remove spurious semicolons committed in r159216.

Modified:
    cfe/trunk/lib/AST/ASTDiagnostic.cpp

Modified: cfe/trunk/lib/AST/ASTDiagnostic.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTDiagnostic.cpp?rev=159218&r1=159217&r2=159218&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTDiagnostic.cpp (original)
+++ cfe/trunk/lib/AST/ASTDiagnostic.cpp Tue Jun 26 13:52:09 2012
@@ -893,7 +893,7 @@
       ArgType = Iter->getAsType();
     else if (!isVariadic)
       ArgType = DefaultTTPD->getDefaultArgument();
-  };
+  }
 
   /// GetExpr - Retrieves the template expression argument, including default
   /// arguments.
@@ -1230,7 +1230,7 @@
                  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





More information about the cfe-commits mailing list