aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2008-11-29 19:58:11 +0000
committerAnders Carlsson <andersca@mac.com>2008-11-29 19:58:11 +0000
commit960525cbfbfd46308090ec13946fcb250c887f09 (patch)
tree5e8789602f847befffc3ad3b77fbf63e60fca3ff
parent0395b5d4987fe5baa818015e9d294c128619e4ec (diff)
CXXFunctionalCastExpr inherits from ExplicitCastExpr.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60249 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/StmtNodes.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/StmtNodes.def b/include/clang/AST/StmtNodes.def
index 0c7faff1ed..4ba9f75fc4 100644
--- a/include/clang/AST/StmtNodes.def
+++ b/include/clang/AST/StmtNodes.def
@@ -97,7 +97,7 @@ STMT(CXXStaticCastExpr , CXXNamedCastExpr)
STMT(CXXDynamicCastExpr , CXXNamedCastExpr)
STMT(CXXReinterpretCastExpr , CXXNamedCastExpr)
STMT(CXXConstCastExpr , CXXNamedCastExpr)
-STMT(CXXFunctionalCastExpr , Expr)
+STMT(CXXFunctionalCastExpr , ExplicitCastExpr)
STMT(CXXTypeidExpr , Expr)
STMT(CXXBoolLiteralExpr , Expr)
STMT(CXXThisExpr , Expr)