| 59 | } |
| 60 | |
| 61 | bool SettingMetaEnumeration::Equal(const SettingMeta& other) const { |
| 62 | if (!SettingMeta::Equal(other)) return false; |
| 63 | |
| 64 | return this->enum_values == static_cast<const SettingMetaEnumeration&>(other).enum_values; |
| 65 | } |
| 66 | |
| 67 | // SettingMetaEnum |
| 68 |
nothing calls this directly
no test coverage detected