From 42a68d51ae3e824ab5e8bb73672e2aac660bd2dc Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Mon, 17 Jul 2017 18:12:34 +0300 Subject: Added default ctor for CSVReader. --- coding/csv_file_reader.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'coding') diff --git a/coding/csv_file_reader.hpp b/coding/csv_file_reader.hpp index f225942ad5..c6c80cd8e7 100644 --- a/coding/csv_file_reader.hpp +++ b/coding/csv_file_reader.hpp @@ -16,6 +16,8 @@ public: char m_delimiter = ','; }; + CSVReader() = default; + using LineByLineCallback = std::function const & line)>; using FullFileCallback = std::function> const & file)>; -- cgit v1.2.3