diff options
Diffstat (limited to 'test/buildtool/execution_engine/executor/executor.test.cpp')
-rw-r--r--[-rwxr-xr-x] | test/buildtool/execution_engine/executor/executor.test.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index e4cdb3a1..8e187115 100755..100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -133,10 +133,9 @@ class TestApi : public IExecutionApi { -> IExecutionAction::Ptr final { return IExecutionAction::Ptr{new TestAction(config_)}; } - auto RetrieveToPaths( - std::vector<Artifact::ObjectInfo> const& /*unused*/, - std::vector<std::filesystem::path> const& /*unused*/) noexcept - -> bool final { + auto RetrieveToPaths(std::vector<Artifact::ObjectInfo> const& /*unused*/, + std::vector<std::filesystem::path> const& /*unused*/, + IExecutionApi* /* unused */) noexcept -> bool final { return false; // not needed by Executor } auto RetrieveToFds(std::vector<Artifact::ObjectInfo> const& /*unused*/, |