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

am: 0bb76346f5

Change-Id: I5d54e2c1563022480f57efde3783617d45ecb6a1
This commit is contained in:
Mårten Kongstad
2018-09-12 17:19:04 -07:00
committed by android-build-merger

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;