mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-21 15:14:13 +00:00
AK: Make Bitmap::set() non-const
This commit is contained in:
@@ -73,7 +73,7 @@ public:
|
||||
return 0 != (m_data[index / 8] & (1u << (index % 8)));
|
||||
}
|
||||
|
||||
void set(size_t index, bool value) const
|
||||
void set(size_t index, bool value)
|
||||
{
|
||||
VERIFY(index < m_size);
|
||||
if (value)
|
||||
|
||||
Reference in New Issue
Block a user