diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-05-22 15:12:46 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-05-22 15:12:46 +0000 |
commit | a558a897cbe83a21914058348ffbdcf827530ad4 (patch) | |
tree | 2800fb26416403c37708fdd159afeba0938bb221 | |
parent | 4381d4b83cdab592dbda85c54672dbe06de5b1d9 (diff) |
Some minor comments modifications.
There are no unnecessary action calls period (courtesy of the annotation scheme) and too many 'this means'..
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72263 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Parse/ParseExprCXX.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Parse/ParseExprCXX.cpp b/lib/Parse/ParseExprCXX.cpp index a2f752aa17..7c90a6319c 100644 --- a/lib/Parse/ParseExprCXX.cpp +++ b/lib/Parse/ParseExprCXX.cpp @@ -1066,7 +1066,7 @@ Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType, // 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 @@ Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType, 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(); |