[cfe-commits] r123370 - /cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h
Zhongxing Xu
xuzhongxing at gmail.com
Wed Jan 12 23:59:59 PST 2011
Author: zhongxingxu
Date: Thu Jan 13 01:59:59 2011
New Revision: 123370
URL: http://llvm.org/viewvc/llvm-project?rev=123370&view=rev
Log:
Add comments.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h
Modified: cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h?rev=123370&r1=123369&r2=123370&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/ExplodedGraph.h Thu Jan 13 01:59:59 2011
@@ -47,6 +47,9 @@
// 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;
More information about the cfe-commits
mailing list