]> granicus.if.org Git - clang/commitdiff
add a fixme.
authorChris Lattner <sabre@nondot.org>
Thu, 8 Nov 2007 19:40:23 +0000 (19:40 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 8 Nov 2007 19:40:23 +0000 (19:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43902 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Rewrite/RewriteRope.h

index 23ff3a675756fbb451aeb7b1c0b98f33049d8219..c4d80ea7c47f8e26870addd5c9fa794da978d76d 100644 (file)
@@ -110,6 +110,8 @@ public:
   
 /// 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;