| 331 | } |
| 332 | |
| 333 | std::string OneOfManySettingDesc::FormatSingleValue(uint id) const |
| 334 | { |
| 335 | if (id >= this->many.size()) { |
| 336 | return fmt::format("{}", id); |
| 337 | } |
| 338 | return std::string{this->many[id]}; |
| 339 | } |
| 340 | |
| 341 | std::string OneOfManySettingDesc::FormatValue(const void *object) const |
| 342 | { |
no test coverage detected