diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-08-31 21:41:48 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-08-31 21:41:48 +0000 |
| commit | 96ee789d335cf4566ce6f54b8a51d0488ce898a6 (patch) | |
| tree | a8cb8e71ba49a8f681e38d3226c46beb84bdfe6f /clang/lib/Analysis | |
| parent | e4cfcc3081a90eb93df294c0d60e8b53d0b8ccb7 (diff) | |
| download | bcm5719-llvm-96ee789d335cf4566ce6f54b8a51d0488ce898a6.tar.gz bcm5719-llvm-96ee789d335cf4566ce6f54b8a51d0488ce898a6.zip | |
Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will
also be adding explicit template arguments as an additional
"adornment". No functionality change.
llvm-svn: 80628
Diffstat (limited to 'clang/lib/Analysis')
| -rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index d66dfffd318..4390025f580 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -407,7 +407,7 @@ void GRExprEngine::Visit(Stmt* S, ExplodedNode* Pred, ExplodedNodeSet& Dst) { break; case Stmt::MemberExprClass: - case Stmt::CXXQualifiedMemberExprClass: + case Stmt::CXXAdornedMemberExprClass: VisitMemberExpr(cast<MemberExpr>(S), Pred, Dst, false); break; @@ -514,7 +514,7 @@ void GRExprEngine::VisitLValue(Expr* Ex, ExplodedNode* Pred, return; case Stmt::MemberExprClass: - case Stmt::CXXQualifiedMemberExprClass: + case Stmt::CXXAdornedMemberExprClass: VisitMemberExpr(cast<MemberExpr>(Ex), Pred, Dst, true); return; |

