diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-12 14:08:16 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 11:36:42 +0200 |
commit | acb0ad5052b81c111333a75f99bdf4bafe299792 (patch) | |
tree | 234ff97dc1d24fbc7a5796ceaecf11cb82323141 /CAN-binder/low-can-binding/can/can-message-definition.cpp | |
parent | 4068ee30a5e041a8e65634ed65c6bbd51a3687dd (diff) |
Message definition can return ref instead of value.
Little optimization that will pass a ref instead of a copy value.
Change-Id: I62fbaaa2fb01cf809e60b592a3d91f06d7235205
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/can/can-message-definition.cpp')
-rw-r--r-- | CAN-binder/low-can-binding/can/can-message-definition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CAN-binder/low-can-binding/can/can-message-definition.cpp b/CAN-binder/low-can-binding/can/can-message-definition.cpp index e947026b..407ed41d 100644 --- a/CAN-binder/low-can-binding/can/can-message-definition.cpp +++ b/CAN-binder/low-can-binding/can/can-message-definition.cpp @@ -92,7 +92,7 @@ uint32_t can_message_definition_t::get_id() const return id_; } -std::vector<std::shared_ptr<can_signal_t> > can_message_definition_t::get_can_signals() +std::vector<std::shared_ptr<can_signal_t> >& can_message_definition_t::get_can_signals() { return can_signals_; } |