summaryrefslogtreecommitdiff
path: root/src/mem/xbar.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/xbar.hh')
-rw-r--r--src/mem/xbar.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/xbar.hh b/src/mem/xbar.hh
index 0745ea5ac..674515001 100644
--- a/src/mem/xbar.hh
+++ b/src/mem/xbar.hh
@@ -410,13 +410,13 @@ class BaseXBar : public MemObject
virtual ~BaseXBar();
- virtual void init();
+ void init() override;
/** A function used to return the port associated with this object. */
Port &getPort(const std::string &if_name,
PortID idx=InvalidPortID) override;
- virtual void regStats();
+ void regStats() override;
};