| 370 | } |
| 371 | |
| 372 | void RemoveFromValidSet(const E& value) { |
| 373 | _valid[value] = false; |
| 374 | if (this->IsOptionVisible() && !this->IsValid(this->_value)) { |
| 375 | this->_value = GetFirstValid(); |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | std::string ValueToString() const override { |
| 380 | return ToString(_values[static_cast<int>(this->_value)]); |
no test coverage detected