]> granicus.if.org Git - clang/commitdiff
Fix a stray instantiation comment in Parse.
authorChandler Carruth <chandlerc@gmail.com>
Tue, 26 Jul 2011 05:19:46 +0000 (05:19 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Tue, 26 Jul 2011 05:19:46 +0000 (05:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136059 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseExpr.cpp

index b961e60d1ee1598cc8cbeeaa5c74170a756fdcee..869d9de47e18565ee19431b8908ec1e9578ca419 100644 (file)
@@ -303,9 +303,9 @@ Parser::ParseRHSOfBinaryExpression(ExprResult LHS, prec::Level MinPrec) {
         // Eat the colon.
         ColonLoc = ConsumeToken();
       } else {
-        // Otherwise, we're missing a ':'.  Assume that this was a typo that the
-        // user forgot.  If we're not in a macro instantiation, we can suggest a
-        // fixit hint.  If there were two spaces before the current token,
+        // Otherwise, we're missing a ':'.  Assume that this was a typo that
+        // the user forgot. If we're not in a macro expansion, we can suggest
+        // a fixit hint. If there were two spaces before the current token,
         // suggest inserting the colon in between them, otherwise insert ": ".
         SourceLocation FILoc = Tok.getLocation();
         const char *FIText = ": ";