diff options
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r-- | include/clang/Analysis/PathSensitive/ExplodedGraph.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 9545e7c0d8..a7f6c3c005 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -28,7 +28,7 @@ namespace clang { class GREngineImpl; class ExplodedNodeImpl; -class GRNodeBuilderImpl; +class GRStmtNodeBuilderImpl; class CFG; class ASTContext; class FunctionDecl; @@ -38,7 +38,7 @@ class ExplodedNodeImpl : public llvm::FoldingSetNode { protected: friend class ExplodedGraphImpl; friend class GREngineImpl; - friend class GRNodeBuilderImpl; + friend class GRStmtNodeBuilderImpl; class NodeGroup { enum { Size1 = 0x0, SizeOther = 0x1, Infeasible = 0x2, Flags = 0x3 }; @@ -192,7 +192,7 @@ public: class ExplodedGraphImpl { protected: friend class GREngineImpl; - friend class GRNodeBuilderImpl; + friend class GRStmtNodeBuilderImpl; // Type definitions. typedef llvm::DenseMap<ProgramPoint,void*> EdgeNodeSetMap; |