diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 16:17:36 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 16:17:36 +0200 |
commit | fa6d02155e06bee279e017c1c844c2b546bf0d1c (patch) | |
tree | b3a2f70bc3c6e13b3667db8556460d734df9e382 /CAN-binder/low-can-binding/binding/configuration.hpp | |
parent | 53e09a3a8e9ff405ee5936f4765659d3817991e6 (diff) |
Adjust method signature to be more efficient.
Return vector reference and doesn't return const ref.
Change-Id: Ibcbc1d72e4baf1a7b8bf017d36d6d37d25312d6d
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
# Conflicts:
# CAN-binder/low-can-binding/can/can-signals.hpp
Diffstat (limited to 'CAN-binder/low-can-binding/binding/configuration.hpp')
-rw-r--r-- | CAN-binder/low-can-binding/binding/configuration.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CAN-binder/low-can-binding/binding/configuration.hpp b/CAN-binder/low-can-binding/binding/configuration.hpp index fd669237..3ab88ee5 100644 --- a/CAN-binder/low-can-binding/binding/configuration.hpp +++ b/CAN-binder/low-can-binding/binding/configuration.hpp @@ -65,15 +65,15 @@ class configuration_t uint8_t get_active_message_set() const; - const std::vector<std::shared_ptr<can_message_set_t> >& get_can_message_set(); + std::vector<std::shared_ptr<can_message_set_t> > get_can_message_set(); std::vector<std::shared_ptr<can_signal_t> > get_all_can_signals(); - std::vector<std::shared_ptr<diagnostic_message_t> > get_diagnostic_messages(); + std::vector<std::shared_ptr<diagnostic_message_t> >& get_diagnostic_messages(); const std::vector<std::string>& get_signals_prefix() const; - std::vector<std::shared_ptr<can_message_definition_t> > get_can_message_definition(); + std::vector<std::shared_ptr<can_message_definition_t> >& get_can_message_definition(); uint32_t get_signal_id(diagnostic_message_t& sig) const; |