From: Sebastian Redl Date: Sun, 26 Apr 2009 11:30:47 +0000 (+0000) Subject: Update StmtNodes.def with the new base class of CXXTemporaryObjectExpr X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e38be7c18249b03159fb052b785d0cf500eda693;p=clang Update StmtNodes.def with the new base class of CXXTemporaryObjectExpr git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70122 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/StmtNodes.def b/include/clang/AST/StmtNodes.def index 5dbb6286ca..8d1045864b 100644 --- a/include/clang/AST/StmtNodes.def +++ b/include/clang/AST/StmtNodes.def @@ -105,7 +105,6 @@ STMT(CXXDynamicCastExpr , CXXNamedCastExpr) STMT(CXXReinterpretCastExpr , CXXNamedCastExpr) STMT(CXXConstCastExpr , CXXNamedCastExpr) STMT(CXXFunctionalCastExpr , ExplicitCastExpr) -STMT(CXXTemporaryObjectExpr , Expr) STMT(CXXTypeidExpr , Expr) STMT(CXXBoolLiteralExpr , Expr) STMT(CXXThisExpr , Expr) @@ -122,6 +121,7 @@ STMT(UnresolvedDeclRefExpr , Expr) STMT(CXXDestroyExpr , Expr) STMT(CXXConstructExpr , Expr) STMT(CXXExprWithCleanup , Expr) +STMT(CXXTemporaryObjectExpr , CXXConstructExpr) // Obj-C Expressions. STMT(ObjCStringLiteral , Expr)