diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 14:09:40 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 16:19:08 +0200 |
commit | bd5201c8abf77de3aae3183069de558c8dd4c40f (patch) | |
tree | 010bc7249996cc363cc03330799c4e4a154f484a /CAN-binder/low-can-binding/can/can-message-definition.cpp | |
parent | 5412b6a4cd9e08b742035dddace225c9bbf5a203 (diff) |
Using reference make std::move useless.
Change-Id: I9b9b6a2fbaecae8acc4f8f1eef0ea8d2f084fb9f
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 a9ee20c5..ec6292af 100644 --- a/CAN-binder/low-can-binding/can/can-message-definition.cpp +++ b/CAN-binder/low-can-binding/can/can-message-definition.cpp @@ -63,7 +63,7 @@ can_message_definition_t::can_message_definition_t( frequency_clock_{frequency_clock}, force_send_changed_{force_send_changed}, last_value_{CAN_MESSAGE_SIZE}, - can_signals_{std::move(can_signals)} + can_signals_{can_signals} {} const std::string can_message_definition_t::get_bus_name() const |