mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:37:45 +00:00
LogStream: Uninline some public functions so the linker can find them.
This commit is contained in:
parent
34709a2c24
commit
f9089da2bc
1 changed files with 2 additions and 2 deletions
|
@ -4,13 +4,13 @@
|
||||||
|
|
||||||
namespace AK {
|
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());
|
stream.write(value.characters(), value.length());
|
||||||
return stream;
|
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());
|
stream.write(value.characters(), value.length());
|
||||||
return stream;
|
return stream;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue