summaryrefslogtreecommitdiff
path: root/tasks.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-08-27 20:44:10 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-08-27 20:44:10 +0200
commitcd36f59cac72920d1b46036da3ddcc82f7280c96 (patch)
tree14852454b16e38f14c57d8149a8519d14ed2294a /tasks.cc
parent7731613f50eb45e5af9cd96e05fc7e43dc3643d1 (diff)
Fix path to string conversions.
Diffstat (limited to 'tasks.cc')
-rw-r--r--tasks.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.cc b/tasks.cc
index ba2c851..93e5a8b 100644
--- a/tasks.cc
+++ b/tasks.cc
@@ -110,7 +110,7 @@ std::list<std::shared_ptr<Task>> 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";