diff options
-rw-r--r-- | Source/cmQtAutoGenInitializer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenInitializer.cxx b/Source/cmQtAutoGenInitializer.cxx index bf48dbb..4db6e1d 100644 --- a/Source/cmQtAutoGenInitializer.cxx +++ b/Source/cmQtAutoGenInitializer.cxx @@ -1451,7 +1451,7 @@ bool cmQtAutoGenInitializer::InitAutogenTarget() // Alter variables for the autogen target which now merely wraps the // custom command dependencies.clear(); - dependencies.push_back(outputFile); + dependencies.emplace_back(std::move(outputFile)); commandLines.clear(); autogenComment.clear(); } |