diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-07-16 07:23:27 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-07-16 07:23:27 +0000 |
commit | d7464be9829a0a8557636a14d17dd9d56594b911 (patch) | |
tree | b58c62d28985f2b368fefdbf75e7dd36a3022d33 /lib/Parse/ParseExpr.cpp | |
parent | 6271c5e01c253a1086b41cf4a49c137edd366dbc (diff) |
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
Diffstat (limited to 'lib/Parse/ParseExpr.cpp')
-rw-r--r-- | lib/Parse/ParseExpr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 |