diff options
Diffstat (limited to 'src/mem')
-rw-r--r-- | src/mem/cache/mshr.hh | 4 | ||||
-rw-r--r-- | src/mem/cache/write_queue_entry.hh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mem/cache/mshr.hh b/src/mem/cache/mshr.hh index 4b054894d..3e7b79ea0 100644 --- a/src/mem/cache/mshr.hh +++ b/src/mem/cache/mshr.hh @@ -352,7 +352,7 @@ class MSHR : public QueueEntry, public Printable assert(inService); return postDowngrade; } - bool sendPacket(BaseCache &cache); + bool sendPacket(BaseCache &cache) override; bool allocOnFill() const { return targets.allocOnFill; @@ -523,7 +523,7 @@ class MSHR : public QueueEntry, public Printable */ void print(std::ostream &os, int verbosity = 0, - const std::string &prefix = "") const; + const std::string &prefix = "") const override; /** * A no-args wrapper of print(std::ostream...) meant to be * invoked from DPRINTFs avoiding string overheads in fast mode diff --git a/src/mem/cache/write_queue_entry.hh b/src/mem/cache/write_queue_entry.hh index 9aaac493c..907ef4775 100644 --- a/src/mem/cache/write_queue_entry.hh +++ b/src/mem/cache/write_queue_entry.hh @@ -92,7 +92,7 @@ class WriteQueueEntry : public QueueEntry, public Printable /** WriteQueueEntry list iterator. */ typedef List::iterator Iterator; - bool sendPacket(BaseCache &cache); + bool sendPacket(BaseCache &cache) override; private: @@ -171,7 +171,7 @@ class WriteQueueEntry : public QueueEntry, public Printable */ void print(std::ostream &os, int verbosity = 0, - const std::string &prefix = "") const; + const std::string &prefix = "") const override; /** * A no-args wrapper of print(std::ostream...) meant to be * invoked from DPRINTFs avoiding string overheads in fast mode |