aboutsummaryrefslogtreecommitdiff
path: root/src/fstring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fstring.cpp')
-rw-r--r--src/fstring.cpp6
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
15std::ostream& operator<< (std::ostream &os, Bu::FString &val )
16{
17 os.write( val.getStr(), val.getSize() );
18 return os;
19}
20