| 751 | } |
| 752 | |
| 753 | bool IntSettingDesc::IsSameValue(const IniItem *item, void *object) const |
| 754 | { |
| 755 | int32_t item_value = static_cast<int32_t>(this->ParseValue(*item->value)); |
| 756 | int32_t object_value = this->Read(object); |
| 757 | return item_value == object_value; |
| 758 | } |
| 759 | |
| 760 | bool IntSettingDesc::IsDefaultValue(void *object) const |
| 761 | { |
no test coverage detected