mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
clang-tidy: Use default member initialization
This commit is contained in:
@@ -1095,13 +1095,9 @@ protected:
|
||||
// Properties set by pattern and regex match rules.
|
||||
struct MatchProperties
|
||||
{
|
||||
bool Exclude;
|
||||
mode_t Permissions;
|
||||
MatchProperties()
|
||||
: Exclude(false)
|
||||
, Permissions(0)
|
||||
{
|
||||
}
|
||||
bool Exclude = false;
|
||||
mode_t Permissions = 0;
|
||||
MatchProperties() {}
|
||||
};
|
||||
struct MatchRule
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user