wifi: replace destructors with default destructors.
This commit is contained in:
committed by
Sébastien Deronne
parent
5104b82cff
commit
55114f4b68
@@ -53,12 +53,6 @@ Event::Event(Ptr<const WifiPpdu> ppdu, Time duration, RxPowerWattPerChannelBand&
|
||||
{
|
||||
}
|
||||
|
||||
Event::~Event()
|
||||
{
|
||||
m_ppdu = nullptr;
|
||||
m_rxPowerW.clear();
|
||||
}
|
||||
|
||||
Ptr<const WifiPpdu>
|
||||
Event::GetPpdu() const
|
||||
{
|
||||
|
||||
@@ -48,7 +48,6 @@ class Event : public SimpleRefCount<Event>
|
||||
* \param rxPower the received power per band (W)
|
||||
*/
|
||||
Event(Ptr<const WifiPpdu> ppdu, Time duration, RxPowerWattPerChannelBand&& rxPower);
|
||||
~Event();
|
||||
|
||||
/**
|
||||
* Return the PPDU.
|
||||
|
||||
@@ -123,11 +123,6 @@ WifiTxVector::WifiTxVector(const WifiTxVector& txVector)
|
||||
}
|
||||
}
|
||||
|
||||
WifiTxVector::~WifiTxVector()
|
||||
{
|
||||
m_muUserInfos.clear();
|
||||
}
|
||||
|
||||
bool
|
||||
WifiTxVector::GetModeInitialized() const
|
||||
{
|
||||
|
||||
@@ -114,7 +114,6 @@ class WifiTxVector
|
||||
HeMuUserInfoMap;
|
||||
|
||||
WifiTxVector();
|
||||
~WifiTxVector();
|
||||
/**
|
||||
* Create a TXVECTOR with the given parameters.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user