From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/tests/speed.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tests/speed.cpp') diff --git a/src/tests/speed.cpp b/src/tests/speed.cpp index c6770de..c78dded 100644 --- a/src/tests/speed.cpp +++ b/src/tests/speed.cpp @@ -5,7 +5,7 @@ * terms of the license contained in the file LICENSE. */ -#include "bu/fstring.h" +#include "bu/string.h" #include template @@ -50,9 +50,9 @@ void fullTest( tst t ) int main() { - Bu::FString str; + Bu::String str; for( int j = 0; j < 500; j++ ) str.append("Hey, this is a test string. It will be reapeated many, many times. How's that?"); - fullTest( tstCopy( str ) ); + fullTest( tstCopy( str ) ); } -- cgit v1.2.3