[cfe-commits] r45490 - in /cfe/trunk/include/clang/Analysis/PathSensitive: SimulGraph.h SimulVertex.h
Ted Kremenek
kremenek at apple.com
Wed Jan 2 10:31:49 PST 2008
Author: kremenek
Date: Wed Jan 2 12:31:49 2008
New Revision: 45490
URL: http://llvm.org/viewvc/llvm-project?rev=45490&view=rev
Log:
Added/fixed some comments.
Modified:
cfe/trunk/include/clang/Analysis/PathSensitive/SimulGraph.h
cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h
Modified: cfe/trunk/include/clang/Analysis/PathSensitive/SimulGraph.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/SimulGraph.h?rev=45490&r1=45489&r2=45490&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/SimulGraph.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/SimulGraph.h Wed Jan 2 12:31:49 2008
@@ -80,7 +80,7 @@
V = (VertexTy*) Allocator.Allocate<VertexTy>();
new (V) VertexTy(VertexCounter++,Loc,State);
- // Insert the vertex in the vertex set and return it.
+ // Insert the vertex into the vertex set and return it.
VSet.InsertNode(V,InsertPos);
return V;
Modified: cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h?rev=45490&r1=45489&r2=45490&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h Wed Jan 2 12:31:49 2008
@@ -22,6 +22,10 @@
namespace clang {
+// *** NOTE ***
+// In the future we may not use a fully templated-implementation. We'll first
+// see how the needed functionality develops and then refactor later.
+
template <typename StateType>
class SimulVertex : public llvm::FoldingSetNode {
public:
More information about the cfe-commits
mailing list