From cd36f59cac72920d1b46036da3ddcc82f7280c96 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 27 Aug 2021 20:44:10 +0200 Subject: Fix path to string conversions. --- tasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tasks.cc') diff --git a/tasks.cc b/tasks.cc index ba2c851..93e5a8b 100644 --- a/tasks.cc +++ b/tasks.cc @@ -110,7 +110,7 @@ std::list> getTasks(const Settings& settings) for(std::size_t i = 0; i < numConfigFiles; ++i) { std::string path = - std::filesystem::path(configFiles[i].file).parent_path(); + std::filesystem::path(configFiles[i].file).parent_path().string(); if(settings.verbose > 1) { std::cout << configFiles[i].file << " in path " << path << "\n"; -- cgit v1.2.3