From ce23db59c6399199fa55b4b7dc8880522e2f1bca Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Mon, 30 Sep 2024 12:16:43 +0200 Subject: Enable readability-redundant-member-init check. --- src/buildtool/execution_api/remote/config.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/buildtool/execution_api/remote/config.hpp') diff --git a/src/buildtool/execution_api/remote/config.hpp b/src/buildtool/execution_api/remote/config.hpp index 45420c80..36e83fdd 100644 --- a/src/buildtool/execution_api/remote/config.hpp +++ b/src/buildtool/execution_api/remote/config.hpp @@ -29,16 +29,16 @@ struct RemoteExecutionConfig final { class Builder; // Server address of remote execution. - std::optional const remote_address = {}; + std::optional const remote_address; // Server dispatch data - std::vector const dispatch = {}; + std::vector const dispatch; // Server address of cache endpoint for rebuild. - std::optional const cache_address = {}; + std::optional const cache_address; // Platform properties for execution. - ExecutionProperties const platform_properties = {}; + ExecutionProperties const platform_properties; }; class RemoteExecutionConfig::Builder final { @@ -80,16 +80,16 @@ class RemoteExecutionConfig::Builder final { private: // Server address of remote execution; needs parsing. - std::optional remote_address_raw_{}; + std::optional remote_address_raw_; // Server dispatch data file; needs parsing. - std::optional dispatch_file_{}; + std::optional dispatch_file_; // Server address of cache endpoint for rebuild; needs parsing. - std::optional cache_address_raw_{}; + std::optional cache_address_raw_; // Platform properties for execution; needs parsing. - std::vector platform_properties_raw_{}; + std::vector platform_properties_raw_; }; #endif // INCLUDED_SRC_BUILDTOOL_EXECUTION_API_REMOTE_CONFIG_HPP -- cgit v1.2.3