diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-07-30 21:54:12 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2019-07-31 17:22:42 (GMT) |
commit | 41364824ad84a40c9906b7b5de492e45a74c8945 (patch) | |
tree | c53e0a60e2e2d1f736a9ce621a32b582e15285f1 /Source/cmFunctionCommand.cxx | |
parent | 6491270e0d3699f5151c08ef41dce84724f9ffc1 (diff) | |
download | CMake-41364824ad84a40c9906b7b5de492e45a74c8945.zip CMake-41364824ad84a40c9906b7b5de492e45a74c8945.tar.gz CMake-41364824ad84a40c9906b7b5de492e45a74c8945.tar.bz2 |
cmFunctionBlocker: Recycle functions
Diffstat (limited to 'Source/cmFunctionCommand.cxx')
-rw-r--r-- | Source/cmFunctionCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmFunctionCommand.cxx b/Source/cmFunctionCommand.cxx index dd0a5d0..610f516 100644 --- a/Source/cmFunctionCommand.cxx +++ b/Source/cmFunctionCommand.cxx @@ -116,7 +116,7 @@ public: bool ArgumentsMatch(cmListFileFunction const&, cmMakefile& mf) const override; - bool Replay(std::vector<cmListFileFunction> const& functions, + bool Replay(std::vector<cmListFileFunction> functions, cmExecutionStatus& status) override; std::vector<std::string> Args; @@ -132,13 +132,13 @@ bool cmFunctionFunctionBlocker::ArgumentsMatch(cmListFileFunction const& lff, } bool cmFunctionFunctionBlocker::Replay( - std::vector<cmListFileFunction> const& functions, cmExecutionStatus& status) + std::vector<cmListFileFunction> functions, cmExecutionStatus& status) { cmMakefile& mf = status.GetMakefile(); // create a new command and add it to cmake cmFunctionHelperCommand f; f.Args = this->Args; - f.Functions = functions; + f.Functions = std::move(functions); f.FilePath = this->GetStartingContext().FilePath; mf.RecordPolicies(f.Policies); mf.GetState()->AddScriptedCommand(this->Args[0], std::move(f)); |