r229432 - Fix typo in comment.
Nico Weber
nicolasweber at gmx.de
Mon Feb 16 13:21:13 PST 2015
Author: nico
Date: Mon Feb 16 15:21:12 2015
New Revision: 229432
URL: http://llvm.org/viewvc/llvm-project?rev=229432&view=rev
Log:
Fix typo in comment.
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=229432&r1=229431&r2=229432&view=diff
==============================================================================
--- cfe/trunk/lib/Parse/ParseExpr.cpp (original)
+++ cfe/trunk/lib/Parse/ParseExpr.cpp Mon Feb 16 15:21:12 2015
@@ -1524,14 +1524,14 @@ Parser::ParsePostfixExpressionSuffix(Exp
cutOffParsing();
return ExprError();
}
-
+
if (MayBePseudoDestructor && !LHS.isInvalid()) {
LHS = ParseCXXPseudoDestructor(LHS.get(), OpLoc, OpKind, SS,
ObjectType);
break;
}
- // Either the action has told is that this cannot be a
+ // Either the action has told us that this cannot be a
// pseudo-destructor expression (based on the type of base
// expression), or we didn't see a '~' in the right place. We
// can still parse a destructor name here, but in that case it
More information about the cfe-commits
mailing list