wifi: Mark GetSupportedRates() as const

This commit is contained in:
Stefano Avallone
2022-06-08 17:58:44 +02:00
parent c6eeecdd0c
commit 0e81b38e0a
2 changed files with 2 additions and 2 deletions

View File

@@ -1267,7 +1267,7 @@ MgtAssocResponseHeader::GetStatusCode (void)
}
const SupportedRates&
MgtAssocResponseHeader::GetSupportedRates (void)
MgtAssocResponseHeader::GetSupportedRates (void) const
{
return m_rates;
}

View File

@@ -458,7 +458,7 @@ public:
*
* \return the supported rates
*/
const SupportedRates& GetSupportedRates (void);
const SupportedRates& GetSupportedRates (void) const;
/**
* Return the Capability information.
*