Fix BitArray::Set to not be const

This commit is contained in:
Wojtek Figat
2023-05-20 11:11:06 +02:00
parent 0d3bae3761
commit d5fcdf6edb

View File

@@ -214,7 +214,7 @@ public:
/// </summary>
/// <param name="index">The index of the item.</param>
/// <param name="value">The value to set.</param>
void Set(int32 index, bool value) const
void Set(int32 index, bool value)
{
ASSERT(index >= 0 && index < _count);
const ItemType offset = index / sizeof(ItemType);