diff options
Diffstat (limited to 'src/task_so.cc')
-rw-r--r-- | src/task_so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task_so.cc b/src/task_so.cc index 25839c5..5453100 100644 --- a/src/task_so.cc +++ b/src/task_so.cc @@ -38,7 +38,7 @@ TaskSO::TaskSO(const ctor::build_configuration& config, for(const auto& dep : config.depends) { - depFiles.push_back(dep); + depFiles.emplace_back(dep); } flagsFile = std::filesystem::path(settings.builddir) / cleanUp(sourceDir) / targetFile().stem(); |