summaryrefslogtreecommitdiff
path: root/src/mem/cache/replacement_policies/mru_rp.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/replacement_policies/mru_rp.hh')
-rw-r--r--src/mem/cache/replacement_policies/mru_rp.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/cache/replacement_policies/mru_rp.hh b/src/mem/cache/replacement_policies/mru_rp.hh
index d947d7cb3..fd9a29dff 100644
--- a/src/mem/cache/replacement_policies/mru_rp.hh
+++ b/src/mem/cache/replacement_policies/mru_rp.hh
@@ -62,7 +62,7 @@ class MRURP : 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 MRURP : public BaseReplacementPolicy
*
* @param blk Cache block to be reset.
*/
- void reset(CacheBlk *blk);
+ void reset(CacheBlk *blk) override;
/**
* Find replacement victim using access timestamps.