small fix for linux printf printout in TCP/IP code #411

Merged
gaisser merged 3 commits from mueller/linuxtcpip-printout-fix into development 2021-04-20 17:51:49 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit fee2ac0eb9 - Show all commits

View File

@ -25,6 +25,6 @@ uint32_t TimeMessage::getCounterValue() {
return temp;
}
size_t TimeMessage::getMinimumMessageSize() {
size_t TimeMessage::getMinimumMessageSize() const {
return this->MAX_SIZE;
}

View File

@ -11,7 +11,7 @@ protected:
* @brief This call always returns the same fixed size of the message.
* @return Returns HEADER_SIZE + \c sizeof(timeval) + sizeof(uint32_t).
*/
size_t getMinimumMessageSize();
size_t getMinimumMessageSize() const override;
public:
/**