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

LibGfx: More work on header dependency reduction

This commit is contained in:
Andreas Kling 2020-02-14 23:28:42 +01:00
parent d85b09893d
commit 08cae2773d
10 changed files with 30 additions and 21 deletions

View file

@ -26,9 +26,8 @@
#pragma once
#include <AK/Optional.h>
#include <AK/String.h>
#include <AK/Types.h>
#include <AK/Forward.h>
#include <AK/StdLibExtras.h>
namespace Gfx {
@ -274,10 +273,7 @@ private:
RGBA32 m_value { 0 };
};
inline const LogStream& operator<<(const LogStream& stream, Color value)
{
return stream << value.to_string();
}
const LogStream& operator<<(const LogStream&, Color);
}