summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-03-09 13:03:13 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-03-16 17:10:40 +0100
commitda7ef40a3eb25f1b74ce5b1ea91b09e29f24a497 (patch)
tree5d6c57e172879549e750116f6719dc19e3488143 /src
parent62d76aeac93109b75539eb600d05d814f477fa19 (diff)
Reorder to fix warning at compilation
Change-Id: I1e558720318d9251ddfbbf6bb66a0461aef98e4c Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src')
-rw-r--r--src/configuration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp
index aeecdb6a..cfa728e7 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()