diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-19 18:33:06 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-19 18:33:06 +0200 |
commit | ff30daa04391f981e871f1dea27b6fbb2b91791c (patch) | |
tree | a184a1e51d975b0965c10acee1c8fb575934b16f /CAN-binder | |
parent | 072452c56e4bc96e976b70ea4aa77f77b244284a (diff) |
Added missing default constructor.
Change-Id: Ie47171ba633274c31a5e0965919232e91ac74adb
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder')
-rw-r--r-- | CAN-binder/low-can-binding/utils/config-parser.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CAN-binder/low-can-binding/utils/config-parser.hpp b/CAN-binder/low-can-binding/utils/config-parser.hpp index adadc883..28a43419 100644 --- a/CAN-binder/low-can-binding/utils/config-parser.hpp +++ b/CAN-binder/low-can-binding/utils/config-parser.hpp @@ -31,6 +31,8 @@ namespace utils ini_config config_content_; /*!< config_content_ - Parsed content of INI file.*/ public: + config_parser_t(config_parser_t&&) = default; + config_parser_t(const config_parser_t&) = default; config_parser_t(std::string conf_file); bool check_conf(); |