From fa6d02155e06bee279e017c1c844c2b546bf0d1c Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Fri, 19 May 2017 16:17:36 +0200 Subject: Adjust method signature to be more efficient. Return vector reference and doesn't return const ref. Change-Id: Ibcbc1d72e4baf1a7b8bf017d36d6d37d25312d6d Signed-off-by: Romain Forlot # Conflicts: # CAN-binder/low-can-binding/can/can-signals.hpp --- CAN-binder/low-can-binding/can/can-signals.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CAN-binder/low-can-binding/can/can-signals.cpp') diff --git a/CAN-binder/low-can-binding/can/can-signals.cpp b/CAN-binder/low-can-binding/can/can-signals.cpp index bc33e06..024855c 100644 --- a/CAN-binder/low-can-binding/can/can-signals.cpp +++ b/CAN-binder/low-can-binding/can/can-signals.cpp @@ -94,7 +94,7 @@ can_message_definition_t* can_signal_t::get_message() const return parent_; } -const std::string& can_signal_t::get_generic_name() const +const std::string can_signal_t::get_generic_name() const { return generic_name_; } @@ -104,7 +104,7 @@ const std::string can_signal_t::get_name() const return prefix_ + "." + generic_name_; } -const std::string& can_signal_t::get_prefix() const +const std::string can_signal_t::get_prefix() const { return prefix_; } -- cgit 1.2.3-korg