From f9089da2bcf5de2dfede98f29566be8e725bf376 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 8 Jul 2019 09:22:22 +0200 Subject: [PATCH] LogStream: Uninline some public functions so the linker can find them. --- AK/LogStream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AK/LogStream.cpp b/AK/LogStream.cpp index e732ca71dc..eb0bee8d97 100644 --- a/AK/LogStream.cpp +++ b/AK/LogStream.cpp @@ -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;