1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

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
parent 34709a2c24
commit f9089da2bc

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;