From 5d0fe05cf3d11402dd35ddfe5abd65af8061c688 Mon Sep 17 00:00:00 2001 From: Arthur Guyader Date: Mon, 26 Aug 2019 15:39:33 +0200 Subject: [PATCH] Change function get_bcm_msg to return a reference. Bug-AGL : SPEC-2779 Change-Id: I303d2423151dac497917299737070ffb645267d3 Signed-off-by: Arthur Guyader --- low-can-binding/can/message/can-message.cpp | 2 +- low-can-binding/can/message/can-message.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/low-can-binding/can/message/can-message.cpp b/low-can-binding/can/message/can-message.cpp index 9bc8787f..8a04992e 100644 --- a/low-can-binding/can/message/can-message.cpp +++ b/low-can-binding/can/message/can-message.cpp @@ -282,7 +282,7 @@ std::string can_message_t::get_debug_message() return ret; } -struct bcm_msg can_message_t::get_bcm_msg() +struct bcm_msg& can_message_t::get_bcm_msg() { return bcm_msg_; } diff --git a/low-can-binding/can/message/can-message.hpp b/low-can-binding/can/message/can-message.hpp index 76515d80..75e65c67 100644 --- a/low-can-binding/can/message/can-message.hpp +++ b/low-can-binding/can/message/can-message.hpp @@ -50,7 +50,7 @@ class can_message_t : public message_t { bool is_correct_to_send(); bool is_set(); - struct bcm_msg get_bcm_msg(); + struct bcm_msg& get_bcm_msg(); void set_bcm_msg(struct bcm_msg bcm_msg); std::string get_debug_message(); -- 2.16.6