LibCore: Move LogStream::operator<< overloads into cpp files

This commit is contained in:
Andreas Kling 2020-02-15 00:44:02 +01:00
commit 3866e0d4d4
Notes: sideshowbarker 2024-07-19 09:19:48 +09:00
9 changed files with 54 additions and 13 deletions

View file

@ -205,4 +205,9 @@ bool Object::is_visible_for_timer_purposes() const
return true;
}
const LogStream& operator<<(const LogStream& stream, const Object& object)
{
return stream << object.class_name() << '{' << &object << '}';
}
}