X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSocketHandle.ct;h=56f93461999b1ad8df7adb3b2287f58f1dbc4a0c;hb=1ad3873b372da6187b1fbc645bf276287d2efb54;hp=11d309ce64568efc8620436df5399117478aa97a;hpb=31d85cd6b8e03c5ecc924ca8892906be1bab702f;p=senf.git diff --git a/Socket/SocketHandle.ct b/Socket/SocketHandle.ct index 11d309c..56f9346 100644 --- a/Socket/SocketHandle.ct +++ b/Socket/SocketHandle.ct @@ -32,13 +32,16 @@ #define prefix_ ///////////////////////////////ct.p//////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////// +// senf::detail::StreamableString + template -prefix_ senf::detail::ConvertibleString & -senf::detail::ConvertibleString::operator+=(ConvertibleString const & other) +prefix_ senf::detail::StreamableString & +senf::detail::StreamableString::operator<<(T const & other) { if (!empty()) - this->std::string::operator+=(", "); - this->std::string::operator+=(other); + (*this) += ", "; + (*this) += boost::lexical_cast(other); return *this; } @@ -53,4 +56,5 @@ senf::detail::ConvertibleString::operator+=(ConvertibleString const & other) // indent-tabs-mode: nil // ispell-local-dictionary: "american" // compile-command: "scons -u test" +// comment-column: 40 // End: