wifi: replace destructors with default destructors.

This commit is contained in:
Tolik Zinovyev
2023-11-27 11:12:39 -05:00
committed by Sébastien Deronne
parent 5104b82cff
commit 55114f4b68
4 changed files with 0 additions and 13 deletions

View File

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

View File

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

View File

@@ -123,11 +123,6 @@ WifiTxVector::WifiTxVector(const WifiTxVector& txVector)
}
}
WifiTxVector::~WifiTxVector()
{
m_muUserInfos.clear();
}
bool
WifiTxVector::GetModeInitialized() const
{

View File

@@ -114,7 +114,6 @@ class WifiTxVector
HeMuUserInfoMap;
WifiTxVector();
~WifiTxVector();
/**
* Create a TXVECTOR with the given parameters.
*