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:
4
src/mem/cache/write_queue_entry.hh
vendored
4
src/mem/cache/write_queue_entry.hh
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user