LibCore: Oops, fix infinite recursion in LogStream << CSocketAddress.

This commit is contained in:
Andreas Kling 2019-07-14 14:24:37 +02:00
commit 4c0c93ce09
Notes: sideshowbarker 2024-07-19 13:16:30 +09:00

View file

@ -49,5 +49,5 @@ private:
inline const LogStream& operator<<(const LogStream& stream, const CSocketAddress& value)
{
return stream << value;
return stream << value.to_string();
}