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

This commit is contained in:
Ben Boeckel
2022-11-22 13:37:59 -05:00
parent 63453bf4ef
commit f8a2926986
7 changed files with 14 additions and 25 deletions
+1 -2
View File
@@ -18,7 +18,6 @@ class cmVisualStudioWCEPlatformParser : public cmXMLParser
public:
cmVisualStudioWCEPlatformParser(const char* name = NULL)
: RequiredName(name)
, FoundRequiredName(false)
{
}
@@ -61,7 +60,7 @@ private:
std::vector<std::string> AvailablePlatforms;
const char* RequiredName;
bool FoundRequiredName;
bool FoundRequiredName = false;
std::string VcInstallDir;
std::string VsInstallDir;
};