diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-06 19:36:23 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-06 19:36:23 +0100 |
commit | 80c59512ea66534456f62cffbd35f440a97b7bf7 (patch) | |
tree | a128cff24f913c0637a41ef620c18e3f668bd99b /src/task_fn.cc | |
parent | bce4efdae37898edfbfcd806453f94485c156bc1 (diff) |
Get rid of (hopefully) the last 'native' dir separators.
Diffstat (limited to 'src/task_fn.cc')
-rw-r--r-- | src/task_fn.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task_fn.cc b/src/task_fn.cc index 873dc44..1ff72f9 100644 --- a/src/task_fn.cc +++ b/src/task_fn.cc @@ -98,7 +98,7 @@ std::vector<std::string> TaskFn::depends() const std::string TaskFn::target() const { - return _targetFile; + return _targetFile.string(); } std::filesystem::path TaskFn::targetFile() const |