diff options
-rw-r--r-- | clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h b/clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h index 3a7a991c4fb..853d3c5ec7c 100644 --- a/clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h +++ b/clang/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h @@ -47,6 +47,9 @@ class ExplodedGraph; // on top of these classes. //===----------------------------------------------------------------------===// +// ExplodedNode is not constified all over the engine because we need to add +// successors to it at any time after creating it. + class ExplodedNode : public llvm::FoldingSetNode { friend class ExplodedGraph; friend class CoreEngine; |