git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43902 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-11-08 19:40:23 +00:00
Родитель 3585fcac51
Коммит 474b29ee01
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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;