Added missing default constructor.
authorRomain Forlot <romain.forlot@iot.bzh>
Wed, 19 Apr 2017 16:33:06 +0000 (18:33 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Wed, 19 Apr 2017 16:33:06 +0000 (18:33 +0200)
Change-Id: Ie47171ba633274c31a5e0965919232e91ac74adb
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
CAN-binder/low-can-binding/utils/config-parser.hpp

index adadc88..28a4341 100644 (file)
@@ -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();