Skip to content

Commit ce687dd

Browse files
0hmXgeeksilva97
andauthored
Update src/lru_cache-inl.h
Co-authored-by: Edy Silva <[email protected]>
1 parent 01ae21c commit ce687dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lru_cache-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class LRUCache {
3131
}
3232
}
3333

34-
value_t& get(const key_t& key) {
34+
value_t& Get(const key_t& key) {
3535
auto it = lookup_map_.find(key);
3636
lru_list_.splice(lru_list_.begin(), lru_list_, it->second);
3737
return it->second->second;

0 commit comments

Comments
 (0)