clang-tidy: Use default member initialization

This commit is contained in:
Regina Pfeifer
2018-11-21 23:17:54 +01:00
parent 32cb564bea
commit b2aa3aedea
62 changed files with 152 additions and 347 deletions

View File

@@ -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
{