From be83b3aff464e175bbe6800a4458a89e3f26e6b8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 12 Jul 2021 21:30:52 +0200 Subject: [PATCH] AK: Make Bitmap::set() non-const --- AK/Bitmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Bitmap.h b/AK/Bitmap.h index 6cc1b655d9eadc..781e3476158585 100644 --- a/AK/Bitmap.h +++ b/AK/Bitmap.h @@ -73,7 +73,7 @@ class Bitmap { 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)