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.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/replacement_policies/mru_rp.hh b/src/mem/cache/replacement_policies/mru_rp.hh
index d9276e689..d947d7cb3 100644
--- a/src/mem/cache/replacement_policies/mru_rp.hh
+++ b/src/mem/cache/replacement_policies/mru_rp.hh
@@ -77,7 +77,7 @@ class MRURP : public BaseReplacementPolicy
* @param cands Replacement candidates, selected by indexing policy.
* @return Cache block to be replaced.
*/
- CacheBlk* getVictim(ReplacementCandidates& candidates) override;
+ CacheBlk* getVictim(const ReplacementCandidates& candidates) override;
};
#endif // __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__