summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/remote/bazel/bazel_response.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel/bazel_response.hpp')
-rw-r--r--src/buildtool/execution_api/remote/bazel/bazel_response.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_response.hpp b/src/buildtool/execution_api/remote/bazel/bazel_response.hpp
index 41957255..30a70d7f 100644
--- a/src/buildtool/execution_api/remote/bazel/bazel_response.hpp
+++ b/src/buildtool/execution_api/remote/bazel/bazel_response.hpp
@@ -70,9 +70,9 @@ class BazelResponse final : public IExecutionResponse {
DirSymlinks dir_symlinks_{};
bool populated_{false};
- BazelResponse(std::string action_id,
- std::shared_ptr<BazelNetwork> network,
- BazelExecutionClient::ExecutionOutput output)
+ explicit BazelResponse(std::string action_id,
+ std::shared_ptr<BazelNetwork> network,
+ BazelExecutionClient::ExecutionOutput output)
: action_id_{std::move(action_id)},
network_{std::move(network)},
output_{std::move(output)} {}