ByteBucketArray.h: fix typo

Bug: 78815803
Test: builds, boots
Change-Id: I93d7ce5255911797d6afdb05caf0cf7dbfdc22b9
This commit is contained in:
Mårten Kongstad
2018-02-28 09:52:16 +01:00
parent 7a8e363c0b
commit cb54cd2dac

View File

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