From: Nico Weber Date: Mon, 16 Feb 2015 21:21:12 +0000 (+0000) Subject: Fix typo in comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fed7afaf044681c77e90f774412defc4e27c1e29;p=clang Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@229432 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseExpr.cpp b/lib/Parse/ParseExpr.cpp index 003d48d0c5..4183ae4d3b 100644 --- a/lib/Parse/ParseExpr.cpp +++ b/lib/Parse/ParseExpr.cpp @@ -1524,14 +1524,14 @@ Parser::ParsePostfixExpressionSuffix(ExprResult LHS) { 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