| 152 | bool IsArray(SettingType type) { return type == SETTING_FLAGS || type == SETTING_LIST; } |
| 153 | |
| 154 | SettingData::SettingData(const std::string& key, const SettingType& type) : key(key), type(type) { assert(!this->key.empty()); } |
| 155 | |
| 156 | bool SettingData::Equal(const SettingData& other) const { |
| 157 | if (this->key != other.key) |
nothing calls this directly
no outgoing calls
no test coverage detected