diff options
Diffstat (limited to 'include/o3tl/lru_map.hxx')
-rw-r--r-- | include/o3tl/lru_map.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/o3tl/lru_map.hxx b/include/o3tl/lru_map.hxx index 54378a319ece..e822fde0294c 100644 --- a/include/o3tl/lru_map.hxx +++ b/include/o3tl/lru_map.hxx @@ -122,7 +122,7 @@ public: } } - const list_const_iterator_t find(const Key& key) + list_const_iterator_t find(const Key& key) { const map_iterator_t i = mLruMap.find(key); if (i == mLruMap.cend()) // can't find entry for the key @@ -155,12 +155,12 @@ public: } } - const list_const_iterator_t begin() const + list_const_iterator_t begin() const { return mLruList.cbegin(); } - const list_const_iterator_t end() const + list_const_iterator_t end() const { return mLruList.cend(); } |