diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-18 19:50:02 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 14:48:23 +0200 |
commit | 3bc17dd60bfd97e36b12849d4d3a5dd3d093a426 (patch) | |
tree | 8d0dd786c859551d965b1fa3497f15ae25e3551c /CAN-binder/low-can-binding/binding/configuration-generated.cpp | |
parent | 465001c7ef7479e7cfb7af7af180ed6419a5ab49 (diff) |
Use shared_ptr for can_message_set too.
Change-Id: I3ba4881d5fc01a69d55e101b9a07c2019dda1d4b
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/binding/configuration-generated.cpp')
-rw-r--r-- | CAN-binder/low-can-binding/binding/configuration-generated.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/CAN-binder/low-can-binding/binding/configuration-generated.cpp b/CAN-binder/low-can-binding/binding/configuration-generated.cpp index 24f89ecb..ad31c455 100644 --- a/CAN-binder/low-can-binding/binding/configuration-generated.cpp +++ b/CAN-binder/low-can-binding/binding/configuration-generated.cpp @@ -4,7 +4,7 @@ configuration_t::configuration_t() : can_bus_manager_{utils::config_parser_t{"/etc/dev-mapping.conf"}} , can_message_set_{ - can_message_set_t{0,"example", + {std::make_shared<can_message_set_t>(can_message_set_t{0,"example", { // beginning can_message_definition_ vector {std::make_shared<can_message_definition_t>(can_message_definition_t{"can0",0x3D9,can_message_format_t::STANDARD,frequency_clock_t(5.00000f),true, { // beginning can_signals vector @@ -220,7 +220,6 @@ configuration_t::configuration_t() })} } // end can_signals vector })} // end can_message_definition entry - }, // end can_message_definition vector { // beginning diagnostic_messages_ vector {std::make_shared<diagnostic_message_t>(diagnostic_message_t{ @@ -455,7 +454,7 @@ configuration_t::configuration_t() true })} } // end diagnostic_messages_ vector - } // end can_message_set entry + })} // end can_message_set entry } // end can_message_set vector {} |