From f19e172997e8b33c720a9a36bce24fa0af11e68a Mon Sep 17 00:00:00 2001 From: Grigoris Pavlakis <gregory.pavlakis@gmail.com> Date: Wed, 20 Mar 2019 07:15:00 +0000 Subject: [PATCH] Fix the header file after changing the call method in the previous commit --- inc/Services/ParameterService.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/Services/ParameterService.hpp b/inc/Services/ParameterService.hpp index 4ef89858..5672b3c6 100644 --- a/inc/Services/ParameterService.hpp +++ b/inc/Services/ParameterService.hpp @@ -73,7 +73,7 @@ public: * * Everything apart from the setting data is uint16 (setting data are uint32 for now) */ - void reportParameterIds(Message paramIds); + void reportParameterIds(Message& paramIds); /** * This function receives a TC[20, 3] message and after checking whether its type is correct, @@ -85,7 +85,7 @@ public: * * @todo Use pointers for changing and storing addresses to comply with the standard */ - void setParameterIds(Message newParamValues); + void setParameterIds(Message& newParamValues); }; -- GitLab