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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h
index a7f6c3c005..dc96c1c5a4 100644
--- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h
+++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h
@@ -29,6 +29,7 @@ namespace clang {
class GREngineImpl;
class ExplodedNodeImpl;
class GRStmtNodeBuilderImpl;
+class GRBranchNodeBuilderImpl;
class CFG;
class ASTContext;
class FunctionDecl;
@@ -39,6 +40,7 @@ protected:
friend class ExplodedGraphImpl;
friend class GREngineImpl;
friend class GRStmtNodeBuilderImpl;
+ friend class GRBranchNodeBuilderImpl;
class NodeGroup {
enum { Size1 = 0x0, SizeOther = 0x1, Infeasible = 0x2, Flags = 0x3 };
@@ -193,6 +195,7 @@ class ExplodedGraphImpl {
protected:
friend class GREngineImpl;
friend class GRStmtNodeBuilderImpl;
+ friend class GRBranchNodeBuilderImpl;
// Type definitions.
typedef llvm::DenseMap<ProgramPoint,void*> EdgeNodeSetMap;