Browse Source

AK: Make Bitmap::set() non-const

Andreas Kling 4 years ago
parent
commit
be83b3aff4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      AK/Bitmap.h

+ 1 - 1
AK/Bitmap.h

@@ -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)