From b1982267b273a61d45795b3bdb47490cb6b858f9 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Sun, 28 Nov 2021 21:02:45 +0100 Subject: [PATCH] AK: Remove unused static member of Bitmap This is a remnant of the Bitmap/BitmapView split. --- AK/Bitmap.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/AK/Bitmap.h b/AK/Bitmap.h index 25532b884ec..4a327689440 100644 --- a/AK/Bitmap.h +++ b/AK/Bitmap.h @@ -175,8 +175,6 @@ public: __builtin_memset(m_data, value ? 0xff : 0x00, size_in_bytes()); } - static constexpr size_t max_size = 0xffffffff; - private: bool m_is_owning { true }; };