summaryrefslogtreecommitdiff
path: root/src/mem/cache/queue_entry.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/queue_entry.hh')
-rw-r--r--src/mem/cache/queue_entry.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/cache/queue_entry.hh b/src/mem/cache/queue_entry.hh
index 02daee01a..8923d860b 100644
--- a/src/mem/cache/queue_entry.hh
+++ b/src/mem/cache/queue_entry.hh
@@ -51,7 +51,7 @@
#include "mem/packet.hh"
-class Cache;
+class BaseCache;
/**
* A queue entry base class, to be used by both the MSHRs and
@@ -102,7 +102,7 @@ class QueueEntry : public Packet::SenderState
* Send this queue entry as a downstream packet, with the exact
* behaviour depending on the specific entry type.
*/
- virtual bool sendPacket(Cache &cache) = 0;
+ virtual bool sendPacket(BaseCache &cache) = 0;
};