From ed402db706488ab910b7c810684379cc2d7b7662 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sat, 24 Nov 2007 00:15:26 +0000 Subject: Alright, *now* remove works. --- src/unit/fstring.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/unit') diff --git a/src/unit/fstring.cpp b/src/unit/fstring.cpp index 03df9c3..b00f11b 100644 --- a/src/unit/fstring.cpp +++ b/src/unit/fstring.cpp @@ -86,6 +86,9 @@ public: unitTest( a == "abcd" ); a.remove( 2, 5 ); unitTest( a == "ab" ); + a += "cdefghijklmnop"; + a.remove( 5, 1 ); + unitTest( a = "abcdeghijklmnop" ); } }; -- cgit v1.2.3