File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
libraries/multi_index_lru/include/userver/multi_index_lru Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -66,9 +66,6 @@ template<
6666>
6767class LRUCacheContainer {
6868public:
69- using iterator = typename Container::iterator;
70- using const_iterator = typename Container::const_iterator;
71-
7269 explicit LRUCacheContainer (size_t max_size) : max_size(max_size) {}
7370
7471 template <typename ... Args>
@@ -147,13 +144,6 @@ class LRUCacheContainer {
147144 void clear () {
148145 container.clear ();
149146 }
150-
151- iterator begin () { return container.begin (); }
152- iterator end () { return container.end (); }
153- const_iterator begin () const { return container.begin (); }
154- const_iterator end () const { return container.end (); }
155- const_iterator cbegin () const { return container.cbegin (); }
156- const_iterator cend () const { return container.cend (); }
157147
158148private:
159149 using CacheItem = impl::ValueWithHook<Value>;
You can’t perform that action at this time.
0 commit comments