[cfe-commits] r72263 - /cfe/trunk/lib/Parse/ParseExprCXX.cpp

Argiris Kirtzidis akyrtzi at gmail.com
Fri May 22 08:12:46 PDT 2009


Author: akirtzidis
Date: Fri May 22 10:12:46 2009
New Revision: 72263

URL: http://llvm.org/viewvc/llvm-project?rev=72263&view=rev
Log:
Some minor comments modifications.

There are no unnecessary action calls period (courtesy of the annotation scheme) and too many 'this means'..

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

Modified: cfe/trunk/lib/Parse/ParseExprCXX.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/ParseExprCXX.cpp?rev=72263&r1=72262&r2=72263&view=diff

==============================================================================
--- cfe/trunk/lib/Parse/ParseExprCXX.cpp (original)
+++ cfe/trunk/lib/Parse/ParseExprCXX.cpp Fri May 22 10:12:46 2009
@@ -1066,7 +1066,7 @@
   // type-id, it is not useful for determining the context past the parens.
   //
   // The good news is that the parser can disambiguate this part without
-  // making any unnecessary Action calls (apart from isTypeName).
+  // making any unnecessary Action calls.
 
   // Start tentantive parsing.
   TentativeParsingAction PA(*this);
@@ -1122,7 +1122,7 @@
     return move(Result);
   }
 
-  // If we get here, it means the things after the parens are not the start of
+  // If we get here, the things after the parens are not the start of
   // a cast-expression. This means we must actually parse the tokens inside
   // the parens as an expression.
   PA.Revert();





More information about the cfe-commits mailing list