Skip to content

Commit

Permalink
missing a space
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewvon committed Dec 4, 2024
1 parent e6a62a7 commit b8edaf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache/fast_lru_cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void LRUHandleTable::Resize() {
std::unique_ptr<LRUHandle* []> new_list {
new LRUHandle* [size_t{1} << new_length_bits] {}
};
[[maybe_unused]]uint32_t count = 0;
[[maybe_unused]] uint32_t count = 0;
for (uint32_t i = 0; i < old_length; i++) {
LRUHandle* h = list_[i];
while (h != nullptr) {
Expand Down

0 comments on commit b8edaf4

Please sign in to comment.