diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-19 18:32:01 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-19 18:32:01 +0200 |
commit | 072452c56e4bc96e976b70ea4aa77f77b244284a (patch) | |
tree | bedf16e74c7a4333412803405115ddb96ad2610b /CAN-binder/low-can-binding/configuration-generated.cpp | |
parent | ebd4cbb403fb05ed21eaf5150244dfd91bd44fb2 (diff) |
C++11 way to initialize using list init.
Change-Id: I0fa96d14d42d1ef80eb0340f48a644c378d4dcbe
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/configuration-generated.cpp')
-rw-r--r-- | CAN-binder/low-can-binding/configuration-generated.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CAN-binder/low-can-binding/configuration-generated.cpp b/CAN-binder/low-can-binding/configuration-generated.cpp index f86f8a0c..1691a697 100644 --- a/CAN-binder/low-can-binding/configuration-generated.cpp +++ b/CAN-binder/low-can-binding/configuration-generated.cpp @@ -2,7 +2,7 @@ #include "can/can-decoder.hpp" configuration_t::configuration_t() - : can_bus_manager_(utils::config_parser_t("/etc/dev-mapping.conf")) + :can_bus_manager_{utils::config_parser_t{"/etc/dev-mapping.conf"}} , can_message_set_{{0, "example", 0, 1, 5, 0, 20}} , can_message_definition_ { |