aboutsummaryrefslogtreecommitdiff
path: root/src/fstring.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-12-12 17:06:16 +0000
committerMike Buland <eichlan@xagasoft.com>2007-12-12 17:06:16 +0000
commit7eb00b6d3037a7e30c326b43e23502f777b92eb6 (patch)
tree60013b086b3682c68192ad2ac8337e221ec9eba9 /src/fstring.h
parentba4167f75c8f7ba8726132eed94af3ae6cd38eee (diff)
downloadlibbu++-7eb00b6d3037a7e30c326b43e23502f777b92eb6.tar.gz
libbu++-7eb00b6d3037a7e30c326b43e23502f777b92eb6.tar.bz2
libbu++-7eb00b6d3037a7e30c326b43e23502f777b92eb6.tar.xz
libbu++-7eb00b6d3037a7e30c326b43e23502f777b92eb6.zip
Corrected some issues with the new trace system. It's now working fine. It's backword compatible, and the new features are a lot of fun. Since it uses template functions you can add any new variable types to be formatted.
Diffstat (limited to 'src/fstring.h')
-rw-r--r--src/fstring.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fstring.h b/src/fstring.h
index c7bbc5e..fd75892 100644
--- a/src/fstring.h
+++ b/src/fstring.h
@@ -1011,6 +1011,10 @@ namespace Bu
1011 1011
1012 template<> uint32_t __calcHashCode<FString>( const FString &k ); 1012 template<> uint32_t __calcHashCode<FString>( const FString &k );
1013 template<> bool __cmpHashKeys<FString>( const FString &a, const FString &b ); 1013 template<> bool __cmpHashKeys<FString>( const FString &a, const FString &b );
1014
1015#ifdef BU_TRACE
1016 template<> void __tracer_format<FString>( const FString &v );
1017#endif
1014} 1018}
1015 1019
1016#include <ostream> 1020#include <ostream>