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

AK: Remove unused static member of Bitmap

This is a remnant of the Bitmap/BitmapView split.
This commit is contained in:
Ben Wiederhake 2021-11-28 21:02:45 +01:00 committed by Brian Gianforcaro
parent 7ba7668fbb
commit b1982267b2

View file

@ -175,8 +175,6 @@ public:
__builtin_memset(m_data, value ? 0xff : 0x00, size_in_bytes()); __builtin_memset(m_data, value ? 0xff : 0x00, size_in_bytes());
} }
static constexpr size_t max_size = 0xffffffff;
private: private:
bool m_is_owning { true }; bool m_is_owning { true };
}; };