diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2008-09-24 03:22:58 +0000 | 
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2008-09-24 03:22:58 +0000 | 
| commit | 0975d66d2f06603f5e4016440b333aac88e2958a (patch) | |
| tree | cd3767fb74c2475fd78bca9ff2d3ba825dd329f4 /src/tests/fstring.cpp | |
| parent | 17df4c2b9616c29865b0d893cc797d4938a660a2 (diff) | |
| download | libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.gz libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.bz2 libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.xz libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.zip  | |
Ok, now all the warnings are gone (except for those coming from nids, but that's
ok, nids is still in flux, they'll be gone soon).
Diffstat (limited to 'src/tests/fstring.cpp')
| -rw-r--r-- | src/tests/fstring.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tests/fstring.cpp b/src/tests/fstring.cpp index 6288ccb..b392eb7 100644 --- a/src/tests/fstring.cpp +++ b/src/tests/fstring.cpp  | |||
| @@ -116,7 +116,7 @@ void doTimings() | |||
| 116 | } | 116 | } | 
| 117 | 117 | ||
| 118 | #define pem printf("---------\n%08tX: %s\n%08tX: %s\n", (ptrdiff_t)str.getStr(), str.getStr(), (ptrdiff_t)str2.getStr(), str2.getStr() ); | 118 | #define pem printf("---------\n%08tX: %s\n%08tX: %s\n", (ptrdiff_t)str.getStr(), str.getStr(), (ptrdiff_t)str2.getStr(), str2.getStr() ); | 
| 119 | int main( int argc, char *argv[] ) | 119 | int main( ) | 
| 120 | { | 120 | { | 
| 121 | Bu::FString fs1; | 121 | Bu::FString fs1; | 
| 122 | for( int j = 0; j < 500000; j++ ) fs1 += (char)('a'+(j%26)); | 122 | for( int j = 0; j < 500000; j++ ) fs1 += (char)('a'+(j%26)); | 
| @@ -148,5 +148,7 @@ int main( int argc, char *argv[] ) | |||
| 148 | printf("%d == %d\n", Bu::__calcHashCode( str ), Bu::__calcHashCode( str.getStr() ) ); | 148 | printf("%d == %d\n", Bu::__calcHashCode( str ), Bu::__calcHashCode( str.getStr() ) ); | 
| 149 | 149 | ||
| 150 | doTimings(); | 150 | doTimings(); | 
| 151 | |||
| 152 | return 0; | ||
| 151 | } | 153 | } | 
| 152 | 154 | ||
