diff options
Diffstat (limited to 'src/fstring.cpp')
| -rw-r--r-- | src/fstring.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fstring.cpp b/src/fstring.cpp index 56d2173..0b5a970 100644 --- a/src/fstring.cpp +++ b/src/fstring.cpp | |||
| @@ -12,3 +12,9 @@ template<> bool Bu::__cmpHashKeys<Bu::FString>( | |||
| 12 | return a == b; | 12 | return a == b; |
| 13 | } | 13 | } |
| 14 | 14 | ||
| 15 | std::ostream& operator<< (std::ostream &os, Bu::FString &val ) | ||
| 16 | { | ||
| 17 | os.write( val.getStr(), val.getSize() ); | ||
| 18 | return os; | ||
| 19 | } | ||
| 20 | |||
