mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:37:45 +00:00
LibCore: Oops, fix infinite recursion in LogStream << CSocketAddress.
This commit is contained in:
parent
3073ea7d84
commit
4c0c93ce09
1 changed files with 1 additions and 1 deletions
|
@ -49,5 +49,5 @@ private:
|
||||||
|
|
||||||
inline const LogStream& operator<<(const LogStream& stream, const CSocketAddress& value)
|
inline const LogStream& operator<<(const LogStream& stream, const CSocketAddress& value)
|
||||||
{
|
{
|
||||||
return stream << value;
|
return stream << value.to_string();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue