diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-09 13:03:13 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:10:40 +0100 |
commit | da7ef40a3eb25f1b74ce5b1ea91b09e29f24a497 (patch) | |
tree | 5d6c57e172879549e750116f6719dc19e3488143 /src/configuration.cpp | |
parent | 62d76aeac93109b75539eb600d05d814f477fa19 (diff) |
Reorder to fix warning at compilation
Change-Id: I1e558720318d9251ddfbbf6bb66a0461aef98e4c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r-- | src/configuration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp index aeecdb6..cfa728e 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -52,7 +52,7 @@ std::vector<std::vector<can_message_definition_t>> CAN_MESSAGES_DEFINTION; std::vector<std::vector<can_signal_t>> SIGNALS; configuration_t::configuration_t() - : obd2_signals_{OBD2_PIDS}, can_message_set_{CAN_MESSAGE_SET}, can_signals_{SIGNALS}, can_message_definition_{CAN_MESSAGES_DEFINTION} + : can_message_set_{CAN_MESSAGE_SET}, can_signals_{SIGNALS}, obd2_signals_{OBD2_PIDS}, can_message_definition_{CAN_MESSAGES_DEFINTION} {} configuration_t& configuration_t::get_configuration() |