1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 19:34:52 +00:00

AK: Make Bitmap constructors public to allow make<Bitmap>()

I don't love this, but I also don't love the Bitmap class in general.
This commit is contained in:
Andreas Kling 2019-10-01 19:58:07 +02:00
parent 3d4ed7f38d
commit 9e7560fae9

View File

@ -131,7 +131,6 @@ public:
return -1;
}
private:
explicit Bitmap()
: m_size(0)
, m_owned(true)
@ -155,6 +154,8 @@ private:
{
}
private:
int size_in_bytes() const { return ceil_div(m_size, 8); }
u8* m_data { nullptr };