mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
clang-tidy: Use default member initialization
This commit is contained in:
@@ -198,13 +198,10 @@ struct cmFindLibraryHelper
|
||||
// Current names under consideration.
|
||||
struct Name
|
||||
{
|
||||
bool TryRaw;
|
||||
bool TryRaw = false;
|
||||
std::string Raw;
|
||||
cmsys::RegularExpression Regex;
|
||||
Name()
|
||||
: TryRaw(false)
|
||||
{
|
||||
}
|
||||
Name() {}
|
||||
};
|
||||
std::vector<Name> Names;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user