From cf854b6c2c1b3b88c42c4efd7b845cc6c067f8b6 Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 11 Sep 2024 19:32:24 -0400 Subject: [PATCH] renamed a function to make it more clear what it does --- Message.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }