diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-24 16:34:21 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-24 16:34:21 +0000 |
commit | 7ab9d574d27ecee1f130e5755aa403e5ab529b6b (patch) | |
tree | 865972010d95f3ab0e7dd0db7e55745284caa17b /lib/AST/Expr.cpp | |
parent | 107de90451b7f7a7749380a9d017ff1bafb6b407 (diff) |
Rename InheritancePath to BasePath, rename CastExpr::CXXBaseVector to CXXBaseSpecifierArray. More to come.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102245 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Expr.cpp')
-rw-r--r-- | lib/AST/Expr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 370f33fbf3..b342507e70 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -654,8 +654,8 @@ const char *CastExpr::getCastKindName() const { void CastExpr::DoDestroy(ASTContext &C) { - if (InheritancePath) - InheritancePath->Destroy(); + if (BasePath) + BasePath->Destroy(); Expr::DoDestroy(C); } |