[cfe-commits] r136059 - /cfe/trunk/lib/Parse/ParseExpr.cpp

Chandler Carruth chandlerc at gmail.com
Mon Jul 25 22:19:46 PDT 2011


Author: chandlerc
Date: Tue Jul 26 00:19:46 2011
New Revision: 136059

URL: http://llvm.org/viewvc/llvm-project?rev=136059&view=rev
Log:
Fix a stray instantiation comment in Parse.

Modified:
    cfe/trunk/lib/Parse/ParseExpr.cpp

Modified: cfe/trunk/lib/Parse/ParseExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/ParseExpr.cpp?rev=136059&r1=136058&r2=136059&view=diff
==============================================================================
--- cfe/trunk/lib/Parse/ParseExpr.cpp (original)
+++ cfe/trunk/lib/Parse/ParseExpr.cpp Tue Jul 26 00:19:46 2011
@@ -303,9 +303,9 @@
         // 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 = ": ";





More information about the cfe-commits mailing list