* Get the setting description of this setting as an integer setting. * @return The integer setting description. */
| 919 | * @return The integer setting description. |
| 920 | */ |
| 921 | const IntSettingDesc *SettingDesc::AsIntSetting() const |
| 922 | { |
| 923 | assert(this->IsIntSetting()); |
| 924 | return static_cast<const IntSettingDesc *>(this); |
| 925 | } |
| 926 | |
| 927 | /** |
| 928 | * Get the setting description of this setting as a string setting. |
no test coverage detected