fixed silly compiler issues under linux and gcc

This commit is contained in:
toni
2019-09-18 10:47:48 +02:00
parent 22c2bc95c9
commit 51117d7559
5 changed files with 15 additions and 15 deletions

View File

@@ -204,11 +204,11 @@ static Stats::Statistics<float> run(Settings::DataSetup setup, int walkIdx, std:
// error file
const long int t = static_cast<long int>(time(NULL));
auto evalDir = std::experimental::filesystem::path(Settings::errorDir);
auto evalDir = std::filesystem::path(Settings::errorDir);
evalDir.append(folder);
if (!std::experimental::filesystem::exists(evalDir)) {
std::experimental::filesystem::create_directory(evalDir);
if (!std::filesystem::exists(evalDir)) {
std::filesystem::create_directory(evalDir);
}
std::ofstream errorFile;