diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-29 00:48:32 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-29 00:48:32 +0000 |
commit | ec8ed8b4b44c7b039e87faaa50bb4d503393d336 (patch) | |
tree | 7ea933f72bf2186f12658f96a30e451622fc485a /src/fstring.cpp | |
parent | 76ea96f91115585f7c6b49d11ba60ec15bee12e6 (diff) | |
download | libbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.tar.gz libbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.tar.bz2 libbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.tar.xz libbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.zip |
A few changes here and there, mainly related to getting the new Server system
working in optimal condition...
Diffstat (limited to 'src/fstring.cpp')
-rw-r--r-- | src/fstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fstring.cpp b/src/fstring.cpp index 0b5a970..f71d6c1 100644 --- a/src/fstring.cpp +++ b/src/fstring.cpp | |||
@@ -12,7 +12,7 @@ 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 ) | 15 | std::basic_ostream<char>& operator<< (std::basic_ostream<char> &os, const Bu::FString &val ) |
16 | { | 16 | { |
17 | os.write( val.getStr(), val.getSize() ); | 17 | os.write( val.getStr(), val.getSize() ); |
18 | return os; | 18 | return os; |