cpu,mem: missing override specifier

Change-Id: I731d3ef021596450ac307461f215760a148bb28a
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18348
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Andrea Mondelli
2019-04-23 13:36:19 -04:00
parent e52e6cc08c
commit 57667bad9f
3 changed files with 14 additions and 10 deletions

View File

@@ -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