mem: Make the BaseXBar public to not confuse Python wrappers
The Python wrappers generally assume that destructors are public. Make the BaseXBar destructor public to avoid confusing the Python wrapper. Change-Id: If958802409c0be74e875dd6e279742abfdb3ede1 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
This commit is contained in:
parent
8702208f3f
commit
bbd3703fbb
1 changed files with 2 additions and 2 deletions
|
@ -439,8 +439,6 @@ class BaseXBar : public MemObject
|
|||
|
||||
BaseXBar(const BaseXBarParams *p);
|
||||
|
||||
virtual ~BaseXBar();
|
||||
|
||||
/**
|
||||
* Stats for transaction distribution and data passing through the
|
||||
* crossbar. The transaction distribution is globally counting
|
||||
|
@ -456,6 +454,8 @@ class BaseXBar : public MemObject
|
|||
|
||||
public:
|
||||
|
||||
virtual ~BaseXBar();
|
||||
|
||||
virtual void init();
|
||||
|
||||
/** A function used to return the port associated with this object. */
|
||||
|
|
Loading…
Reference in a new issue