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

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

Merge "ByteBucketArray.h: fix typo"

am: b848ce8e

Change-Id: I81aff763f5572b6c72e1a845fda518179cf95e15
parents eda353bc b848ce8e
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;