Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb54cd2d authored by Mårten Kongstad's avatar Mårten Kongstad
Browse files

ByteBucketArray.h: fix typo

Bug: 78815803
Test: builds, boots
Change-Id: I93d7ce5255911797d6afdb05caf0cf7dbfdc22b9
parent 7a8e363c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ class ByteBucketArray {
  }

  T& editItemAt(size_t index) {
    CHECK(index < size()) << "ByteBucketArray.getOrCreate(index=" << index
    CHECK(index < size()) << "ByteBucketArray.editItemAt(index=" << index
                          << ") with size=" << size();

    uint8_t bucket_index = static_cast<uint8_t>(index) >> 4;