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

Commit 50bec961 authored by Mårten Kongstad's avatar Mårten Kongstad Committed by android-build-merger
Browse files

Merge "ByteBucketArray.h: fix typo" am: b848ce8e

am: 0bb76346

Change-Id: I5d54e2c1563022480f57efde3783617d45ecb6a1
parents 523cf0bb 0bb76346
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;