From 1d464d2a7380248b04c3e734ed5c6e84bbf53ddf Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Wed, 15 Mar 2017 13:04:42 +0100 Subject: Revert accessing CAN device with a map indexing on dev name Main reason for that behavior revert is because of generator that rely on CAN device name and so we have point on these object by specify the device name. Instead of shared pointer between objects, instead binding is based on device name. With a device name you can get the shared pointer on it using new static method from can_bus_t object. Change-Id: I331e0ad8d03c88a15c697d12a9fce3699b0cd962 Signed-off-by: Romain Forlot --- src/configuration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/configuration.cpp') diff --git a/src/configuration.cpp b/src/configuration.cpp index e6114cb9..ec12d8f1 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -42,7 +42,7 @@ can_bus_t& configuration_t::get_can_bus_manager() return can_bus_manager_; } -const std::vector>& configuration_t::get_can_bus_devices() +const std::map>& configuration_t::get_can_bus_devices() { return can_bus_manager_.get_can_devices(); } -- cgit 1.2.3-korg