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

am: 50bec961b3

Change-Id: I1ff25b8a7ff8385646ef128ae41e9794b6313cf8
This commit is contained in:
Mårten Kongstad
2018-09-12 17:41:10 -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;