summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/local/local_api.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/local/local_api.hpp')
-rw-r--r--src/buildtool/execution_api/local/local_api.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtool/execution_api/local/local_api.hpp b/src/buildtool/execution_api/local/local_api.hpp
index dbfb3504..05fbeeda 100644
--- a/src/buildtool/execution_api/local/local_api.hpp
+++ b/src/buildtool/execution_api/local/local_api.hpp
@@ -53,11 +53,11 @@ class LocalApi final : public IExecutionApi {
properties}};
}
- // NOLINTNEXTLINE(misc-no-recursion)
+ // NOLINTNEXTLINE(misc-no-recursion,google-default-arguments)
[[nodiscard]] auto RetrieveToPaths(
std::vector<Artifact::ObjectInfo> const& artifacts_info,
- std::vector<std::filesystem::path> const& output_paths) noexcept
- -> bool final {
+ std::vector<std::filesystem::path> const& output_paths,
+ IExecutionApi* /*alternative*/ = nullptr) noexcept -> bool final {
if (artifacts_info.size() != output_paths.size()) {
Logger::Log(LogLevel::Error,
"different number of digests and output paths.");