clang-tidy: address modernize-use-default-member-init lints

This commit is contained in:
Ben Boeckel
2022-05-17 12:49:23 -04:00
committed by Brad King
parent 437789db07
commit a5f8cbe8b1
54 changed files with 109 additions and 212 deletions

View File

@@ -78,12 +78,12 @@ protected:
// Information used during generation.
std::string ConfigurationName;
std::vector<std::string> const* ConfigurationTypes;
std::vector<std::string> const* ConfigurationTypes = nullptr;
// True if the subclass needs to generate an explicit rule for each
// configuration. False if the subclass only generates one rule for
// all enabled configurations.
bool ActionsPerConfig;
bool ActionsPerConfig = false;
private:
void GenerateScriptActionsOnce(std::ostream& os, Indent indent);