[cfe-commits] r43902 - /cfe/trunk/include/clang/Rewrite/RewriteRope.h

Chris Lattner sabre at nondot.org
Thu Nov 8 11:40:24 PST 2007


Author: lattner
Date: Thu Nov  8 13:40:23 2007
New Revision: 43902

URL: http://llvm.org/viewvc/llvm-project?rev=43902&view=rev
Log:
add a fixme.

Modified:
    cfe/trunk/include/clang/Rewrite/RewriteRope.h

Modified: cfe/trunk/include/clang/Rewrite/RewriteRope.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Rewrite/RewriteRope.h?rev=43902&r1=43901&r2=43902&view=diff

==============================================================================
--- cfe/trunk/include/clang/Rewrite/RewriteRope.h (original)
+++ cfe/trunk/include/clang/Rewrite/RewriteRope.h Thu Nov  8 13:40:23 2007
@@ -110,6 +110,8 @@
   
 /// RewriteRope - A powerful string class, todo generalize this.
 class RewriteRope {
+  // FIXME: This could be significantly faster by using a balanced binary tree
+  // instead of a list.
   std::list<RopePiece> Chunks;
   unsigned CurSize;
   





More information about the cfe-commits mailing list