From: Chris Lattner Date: Thu, 8 Nov 2007 19:40:23 +0000 (+0000) Subject: add a fixme. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=474b29ee01a827075878ab1a101128d7969f2eba;p=clang add a fixme. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43902 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Rewrite/RewriteRope.h b/include/clang/Rewrite/RewriteRope.h index 23ff3a6757..c4d80ea7c4 100644 --- a/include/clang/Rewrite/RewriteRope.h +++ b/include/clang/Rewrite/RewriteRope.h @@ -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 Chunks; unsigned CurSize;