1
0
forked from fsfw/fsfw

added back clear CommandMessage function

This commit is contained in:
2020-06-29 16:50:45 +02:00
parent e2a36efce3
commit 85cc936d5d
2 changed files with 6 additions and 0 deletions

View File

@ -68,6 +68,10 @@ size_t CommandMessage::getMinimumMessageSize() const {
return MINIMUM_COMMAND_MESSAGE_SIZE;
}
void CommandMessage::clearCommandMessage() {
clear();
}
void CommandMessage::clear() {
CommandMessageCleaner::clearCommandMessage(this);
}