* Get the default value of the setting. * @return The default value. */
| 465 | * @return The default value. |
| 466 | */ |
| 467 | int32_t IntSettingDesc::GetDefaultValue() const |
| 468 | { |
| 469 | return this->get_def_cb != nullptr ? this->get_def_cb(*this) : this->def; |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * Get the min/max range for the setting. |
no outgoing calls
no test coverage detected