commit | 7d96cd7799b3d80dc54f6adec043006ccb549bf6 | [log] [tgz] |
---|---|---|
author | Anders Carlsson <andersca@mac.com> | Sat Apr 24 16:34:21 2010 +0000 |
committer | Anders Carlsson <andersca@mac.com> | Sat Apr 24 16:34:21 2010 +0000 |
tree | 53011db00d90aa006d989cbc2ab0bd7738a99f71 | |
parent | bbdf20acd0163e13d9dd600ac88db2d0b0198fa4 [diff] [blame] |
Rename InheritancePath to BasePath, rename CastExpr::CXXBaseVector to CXXBaseSpecifierArray. More to come. llvm-svn: 102245
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index 370f33f..b342507 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp
@@ -654,8 +654,8 @@ void CastExpr::DoDestroy(ASTContext &C) { - if (InheritancePath) - InheritancePath->Destroy(); + if (BasePath) + BasePath->Destroy(); Expr::DoDestroy(C); }