Use correct signature for getMaxResendCount

This commit is contained in:
Thomas Basler
2025-04-09 18:48:09 +02:00
parent f1efe21ba3
commit 1f3f275689
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ bool ChannelChangeCommand::handleResponse(const fragment_t fragment[], const uin
return true;
}
uint8_t ChannelChangeCommand::getMaxResendCount()
uint8_t ChannelChangeCommand::getMaxResendCount() const
{
// This command will never retrieve an answer. Therefor it's not required to repeat it
return 0;

View File

@@ -17,5 +17,5 @@ public:
virtual bool handleResponse(const fragment_t fragment[], const uint8_t max_fragment_id);
virtual uint8_t getMaxResendCount();
virtual uint8_t getMaxResendCount() const;
};