From: Argyrios Kyrtzidis Date: Wed, 16 Jul 2008 07:23:27 +0000 (+0000) Subject: Add 'this' in the comments of Parser::ParseCastExpression to indicate that it is... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7464be9829a0a8557636a14d17dd9d56594b911;p=clang Add 'this' in the comments of Parser::ParseCastExpression to indicate that it is handled. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53665 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseExpr.cpp b/lib/Parse/ParseExpr.cpp index 17797ec488..d992956f3d 100644 --- a/lib/Parse/ParseExpr.cpp +++ b/lib/Parse/ParseExpr.cpp @@ -376,6 +376,7 @@ Parser::ParseRHSOfBinaryExpression(ExprResult LHS, unsigned MinPrec) { /// [C++] 'dynamic_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] /// [C++] 'reinterpret_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] /// [C++] 'static_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] +/// [C++] 'this' [C++ 9.3.2] /// /// constant: [C99 6.4.4] /// integer-constant