1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

LibDraw: Add LogStream operator<< overload for Color.

This commit is contained in:
Andreas Kling 2019-07-23 14:56:17 +02:00
parent 66646081b7
commit 528d8d49dc

View file

@ -141,3 +141,8 @@ private:
RGBA32 m_value { 0 };
};
inline const LogStream& operator<<(const LogStream& stream, Color value)
{
return stream << value.to_string();
}