From: Romain Forlot Date: Wed, 19 Apr 2017 16:33:06 +0000 (+0200) Subject: Added missing default constructor. X-Git-Tag: 3.99.1~155 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=ff30daa04391f981e871f1dea27b6fbb2b91791c;p=apps%2Flow-level-can-service.git Added missing default constructor. Change-Id: Ie47171ba633274c31a5e0965919232e91ac74adb Signed-off-by: Romain Forlot --- diff --git a/CAN-binder/low-can-binding/utils/config-parser.hpp b/CAN-binder/low-can-binding/utils/config-parser.hpp index adadc88..28a4341 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();