diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-03 18:23:20 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-03 18:23:20 +0200 |
commit | 7679cd97dc4c20103f8afb364437dbcfd359befc (patch) | |
tree | b39d54fab09797c38920155730bbedb4dd90393b /CAN-binder/low-can-binding/utils/socketcan.hpp | |
parent | 1d2d57fea4a08f0a31eb207105abe7058bea4fcf (diff) |
Fix: constructor and include file missing.
Copy constructors are allowed since socket will never be closed during binding
runs.
Change-Id: Ie33e4b7e885d45e1ffeb980400df00ae2a97e45d
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/utils/socketcan.hpp')
-rw-r--r-- | CAN-binder/low-can-binding/utils/socketcan.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CAN-binder/low-can-binding/utils/socketcan.hpp b/CAN-binder/low-can-binding/utils/socketcan.hpp index 391fb460..3c02a4fa 100644 --- a/CAN-binder/low-can-binding/utils/socketcan.hpp +++ b/CAN-binder/low-can-binding/utils/socketcan.hpp @@ -34,7 +34,7 @@ namespace utils { public: socketcan_t(); - socketcan_t(const socketcan_t&) = delete; + socketcan_t(const socketcan_t&); socketcan_t(socketcan_t&&); virtual ~socketcan_t(); |