mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
clang-tidy: address modernize-use-default-member-init lints
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user