Fix spelling and grammar in a comment.
[oota-llvm.git] / tools / llvmc2 / CompilationGraph.h
index 7dfe78fd2ded570eb82939cff175d6f995e121f7..4324c38ab85465a924252617b6e47e8aa1eb8aa7 100644 (file)
@@ -79,8 +79,6 @@ namespace llvmc {
     { OutEdges.push_back(llvm::IntrusiveRefCntPtr<Edge>(E)); }
 
     // Inward edge counter. Used to implement topological sort.
-    // TOTHINK: Move the mutable counter back into Tool classes? Makes
-    // us more const-correct.
     void IncrInEdges() { ++InEdges; }
     void DecrInEdges() { --InEdges; }
     bool HasNoInEdges() const { return InEdges == 0; }