aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/ExplodedGraph.h
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-02-28 10:21:43 +0000
committerTed Kremenek <kremenek@apple.com>2008-02-28 10:21:43 +0000
commitaed9b6ac2ed0013133e4d4aebf2fad2ccd27f3e6 (patch)
treef3d0ad4345b40cb7e43a650265218495cc1b7fa5 /include/clang/Analysis/PathSensitive/ExplodedGraph.h
parent4a4e524afef40d6f3ddb25d0e407c814e4ca56a8 (diff)
Merged ValueState and ValueStateImpl into just ValueState, with GRExprEngine::StateTy just becoming ValueState*.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r--include/clang/Analysis/PathSensitive/ExplodedGraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h
index 16dff25037..dfdfa5b780 100644
--- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h
+++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h
@@ -163,7 +163,7 @@ public:
// Profiling (for FoldingSet).
inline void Profile(llvm::FoldingSetNodeID& ID) const {
- StateTy::Profile(ID, getState());
+ GRTrait<StateTy>::Profile(ID, getState());
}
// Iterators over successor and predecessor vertices.
@@ -317,7 +317,7 @@ public:
llvm::FoldingSetNodeID profile;
void* InsertPos = 0;
- StateTy::Profile(profile, State);
+ GRTrait<StateTy>::Profile(profile, State);
NodeTy* V = VSet->FindNodeOrInsertPos(profile, InsertPos);
if (!V) {