diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-09-30 12:16:43 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-07 13:37:39 +0200 |
commit | ce23db59c6399199fa55b4b7dc8880522e2f1bca (patch) | |
tree | 5b77d3c84289f023cbe6f4a81cf391a0087fe660 /test/buildtool/graph_traverser | |
parent | e5d7cb5ce5b9cc40b0c56b18980a4234118c1739 (diff) | |
download | justbuild-ce23db59c6399199fa55b4b7dc8880522e2f1bca.tar.gz |
Enable readability-redundant-member-init check.
Diffstat (limited to 'test/buildtool/graph_traverser')
-rw-r--r-- | test/buildtool/graph_traverser/graph_traverser.test.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/buildtool/graph_traverser/graph_traverser.test.hpp b/test/buildtool/graph_traverser/graph_traverser.test.hpp index cb9cb57c..a9839638 100644 --- a/test/buildtool/graph_traverser/graph_traverser.test.hpp +++ b/test/buildtool/graph_traverser/graph_traverser.test.hpp @@ -56,8 +56,8 @@ class TestProject { public: struct CommandLineArguments { GraphTraverser::CommandLineArguments gtargs; - nlohmann::json artifacts{}; - std::filesystem::path graph_description{}; + nlohmann::json artifacts; + std::filesystem::path graph_description; explicit CommandLineArguments( GraphTraverser::CommandLineArguments gtargs) @@ -111,8 +111,8 @@ class TestProject { "test/buildtool/graph_traverser/data/"; static inline std::string const kDefaultEntryPointsFileName = "_entry_points"; - std::string example_name_{}; - std::filesystem::path root_dir_{}; + std::string example_name_; + std::filesystem::path root_dir_; RepositoryConfig repo_config_{}; void SetupConfig() { |