diff options
| author | Alexis Hunt <alercah@gmail.com> | 2011-01-08 20:30:50 +0000 |
|---|---|---|
| committer | Alexis Hunt <alercah@gmail.com> | 2011-01-08 20:30:50 +0000 |
| commit | 1d7926502f8ef3679697d6be6a191479efffae08 (patch) | |
| tree | e2af0cbb5fb29e4b661f895a0fc08142b937d90f /clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp | |
| parent | 710dd5aebf64c790a03f2e6f0cc4438e8a00fbd4 (diff) | |
| download | bcm5719-llvm-1d7926502f8ef3679697d6be6a191479efffae08.tar.gz bcm5719-llvm-1d7926502f8ef3679697d6be6a191479efffae08.zip | |
Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter,
more accurate, and makes it make sense for it to hold a delegating constructor
call.
llvm-svn: 123084
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp')
| -rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp index 3f77244dc4a..67ddcce8594 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp @@ -640,7 +640,7 @@ void ExprEngine::ProcessStmt(const CFGStmt S, StmtNodeBuilder& builder) { void ExprEngine::ProcessInitializer(const CFGInitializer Init, StmtNodeBuilder &builder) { // We don't set EntryNode and currentStmt. And we don't clean up state. - const CXXBaseOrMemberInitializer *BMI = Init.getInitializer(); + const CXXCtorInitializer *BMI = Init.getInitializer(); ExplodedNode *Pred = builder.getBasePredecessor(); const LocationContext *LC = Pred->getLocationContext(); |

