Merge "ByteBucketArray.h: fix typo"

am: b848ce8e20

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