diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-12-09 20:02:33 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-12-09 20:28:00 +0100 |
commit | 4f3422c58ed4fc14b222cd474843affb9cc509c4 (patch) | |
tree | 5d6079f5309fabf553119fad5b01779c6a8097d0 /src/task_cc.cc | |
parent | 5ba36c7be0a12b9b052fb172a209d3b6dffc9a99 (diff) |
Various clang-tidy fixes.
Diffstat (limited to 'src/task_cc.cc')
-rw-r--r-- | src/task_cc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task_cc.cc b/src/task_cc.cc index dabeefa..49aef78 100644 --- a/src/task_cc.cc +++ b/src/task_cc.cc @@ -16,12 +16,12 @@ TaskCC::TaskCC(const ctor::build_configuration& config, const ctor::settings& settings, const std::string& sourceDir, const ctor::source& source) : Task(config, settings, sourceDir) + , sourceFile(sourceDir) , config(config) , settings(settings) , sourceDir(sourceDir) , _source(source) { - sourceFile = sourceDir; sourceFile /= source.file; std::filesystem::path base = sourceFile.parent_path(); |