aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/ExplodedGraph.h
diff options
context:
space:
mode:
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) {