Skip to content

Commit 01ae21c

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

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
@@ -11,7 +11,7 @@ class LRUCache {
1111
using key_value_pair_t = typename std::pair<key_t, value_t>;
1212
using iterator = typename std::list<key_value_pair_t>::iterator;
1313

14-
explicit LruCache(size_t capacity) : capacity_(capacity) {}
14+
explicit LRUCache(size_t capacity) : capacity_(capacity) {}
1515

1616
void Put(const key_t& key, const value_t& value) {
1717
auto it = lookup_map_.find(key);

0 commit comments

Comments
 (0)