diff --git a/Message.h b/Message.h index 6ec143a..e750888 100644 --- a/Message.h +++ b/Message.h @@ -50,7 +50,7 @@ class Message{ * @brief Returns the number of args that have been populated for the current message * @return the number of args that have been populated for the current message */ - uint32_t GetArgsLength(); + uint32_t GetMaxArgs(); /** * @brief Returns the number of args that have been populated for the current message @@ -177,7 +177,7 @@ int32_t * Message::GetArgs(){ } template -uint32_t Message::GetArgsLength(){ +uint32_t Message::GetMaxArgs(){ return MAX_ARGS; }