We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a858b commit 01ae21cCopy full SHA for 01ae21c
1 file changed
src/lru_cache-inl.h
@@ -11,7 +11,7 @@ class LRUCache {
11
using key_value_pair_t = typename std::pair<key_t, value_t>;
12
using iterator = typename std::list<key_value_pair_t>::iterator;
13
14
- explicit LruCache(size_t capacity) : capacity_(capacity) {}
+ explicit LRUCache(size_t capacity) : capacity_(capacity) {}
15
16
void Put(const key_t& key, const value_t& value) {
17
auto it = lookup_map_.find(key);
0 commit comments