StyleSpec: 0-initialize the property_set array

master
Hugues Ross 2019-12-14 18:03:33 -05:00 committed by sfan5
parent 41ff0f6679
commit bd4b8d40b3
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public:
};
private:
std::array<bool, NUM_PROPERTIES> property_set;
std::array<bool, NUM_PROPERTIES> property_set{};
std::array<std::string, NUM_PROPERTIES> properties;
public: