From 9e7560fae9d7c6484594f8a6e41adfb125f809d6 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 1 Oct 2019 19:58:07 +0200 Subject: [PATCH] AK: Make Bitmap constructors public to allow make() I don't love this, but I also don't love the Bitmap class in general. --- AK/Bitmap.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AK/Bitmap.h b/AK/Bitmap.h index d06033d461..2aea15e074 100644 --- a/AK/Bitmap.h +++ b/AK/Bitmap.h @@ -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 };