mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-25 07:38:33 -05:00
clang-tidy: fix modernize-use-default-member-init lints
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user