diff options
Diffstat (limited to '')
-rw-r--r-- | src/fstring.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/fstring.cpp b/src/fstring.cpp index 3ed4f2b..e4dc716 100644 --- a/src/fstring.cpp +++ b/src/fstring.cpp | |||
@@ -8,8 +8,10 @@ | |||
8 | #define BU_TRACE | 8 | #define BU_TRACE |
9 | #include "bu/trace.h" | 9 | #include "bu/trace.h" |
10 | 10 | ||
11 | #include "fstring.h" | 11 | #include "bu/fstring.h" |
12 | #include "hash.h" | 12 | #include "bu/hash.h" |
13 | |||
14 | template class Bu::FBasicString<char>; | ||
13 | 15 | ||
14 | template<> uint32_t Bu::__calcHashCode<Bu::FString>( const Bu::FString &k ) | 16 | template<> uint32_t Bu::__calcHashCode<Bu::FString>( const Bu::FString &k ) |
15 | { | 17 | { |
@@ -37,8 +39,8 @@ std::basic_ostream<char>& operator<< (std::basic_ostream<char> &os, const Bu::FS | |||
37 | return os; | 39 | return os; |
38 | } | 40 | } |
39 | 41 | ||
40 | |||
41 | template<> void Bu::__tracer_format<Bu::FString>( const Bu::FString &v ) | 42 | template<> void Bu::__tracer_format<Bu::FString>( const Bu::FString &v ) |
42 | { | 43 | { |
43 | printf("(%ld)\"%s\"", v.getSize(), v.getStr() ); | 44 | printf("(%ld)\"%s\"", v.getSize(), v.getStr() ); |
44 | } | 45 | } |
46 | |||