summaryrefslogtreecommitdiff
path: root/src/mem/cache/replacement_policies/lru_rp.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/replacement_policies/lru_rp.hh')
-rw-r--r--src/mem/cache/replacement_policies/lru_rp.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/cache/replacement_policies/lru_rp.hh b/src/mem/cache/replacement_policies/lru_rp.hh
index 3e5efe61f..2dd7e86f0 100644
--- a/src/mem/cache/replacement_policies/lru_rp.hh
+++ b/src/mem/cache/replacement_policies/lru_rp.hh
@@ -62,7 +62,7 @@ class LRURP : public BaseReplacementPolicy
*
* @param blk Cache block to be touched.
*/
- void touch(CacheBlk *blk);
+ void touch(CacheBlk *blk) override;
/**
* Reset replacement data for a block. Used when a block is inserted.
@@ -70,7 +70,7 @@ class LRURP : public BaseReplacementPolicy
*
* @param blk Cache block to be reset.
*/
- void reset(CacheBlk *blk);
+ void reset(CacheBlk *blk) override;
/**
* Find replacement victim using LRU timestamps.