Skip to content
Snippets Groups Projects
Commit 3c596e1a authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: filesystem header is now included as experimental/filesystem to make lib4neuro more portable

parent 48ab686b
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
#include <string>
#include <fstream>
#include <sstream>
#include <filesystem>
#include <experimental/filesystem>
#include <regex>
#include <algorithm>
#include <memory>
......@@ -18,7 +18,7 @@
namespace lib4neuro {
CSVReader::CSVReader(std::string file_path, std::string delimiter, bool ignore_first_line) {
if(!std::filesystem::exists(file_path)) {
if(!std::experimental::filesystem::exists(file_path)) {
THROW_RUNTIME_ERROR("The file path \'" + file_path + "\' specified in CSVReader does not exist!");
}
......
......@@ -3,7 +3,7 @@
//
#include <algorithm>
#include <filesystem>
#include <experimental/filesystem>
#include <boost/serialization/export.hpp>
#include "DataSetSerialization.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment