LogStream: Uninline some public functions so the linker can find them.

This commit is contained in:
Andreas Kling 2019-07-08 09:22:22 +02:00
commit f9089da2bc
Notes: sideshowbarker 2024-07-19 13:22:37 +09:00

View file

@ -4,13 +4,13 @@
namespace AK {
inline const LogStream& operator<<(const LogStream& stream, const String& value)
const LogStream& operator<<(const LogStream& stream, const String& value)
{
stream.write(value.characters(), value.length());
return stream;
}
inline const LogStream& operator<<(const LogStream& stream, const StringView& value)
const LogStream& operator<<(const LogStream& stream, const StringView& value)
{
stream.write(value.characters(), value.length());
return stream;