summaryrefslogtreecommitdiff
path: root/base/containers/mru_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/containers/mru_cache.h')
-rw-r--r--base/containers/mru_cache.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/base/containers/mru_cache.h b/base/containers/mru_cache.h
index 4005489d4b..7c684a9690 100644
--- a/base/containers/mru_cache.h
+++ b/base/containers/mru_cache.h
@@ -105,8 +105,6 @@ class MRUCacheBase {
// Retrieves the contents of the given key, or end() if not found. This method
// has the side effect of moving the requested item to the front of the
// recency list.
- //
- // TODO(brettw) We may want a const version of this function in the future.
iterator Get(const KeyType& key) {
typename KeyIndex::iterator index_iter = index_.find(key);
if (index_iter == index_.end())