AK: Fix URL's operator<<() and use it

This commit is contained in:
Linus Groh 2020-05-16 18:35:39 +01:00 committed by Andreas Kling
commit ad3871b64e
Notes: sideshowbarker 2024-07-19 06:36:09 +09:00
3 changed files with 6 additions and 8 deletions

View file

@ -89,11 +89,9 @@ private:
String m_data_payload;
};
}
using AK::URL;
inline const LogStream& operator<<(const LogStream& stream, const URL& value)
{
return stream << value.to_string();
}
}