| 582 | } |
| 583 | |
| 584 | std::optional<bool> SettingToBool(const common::SettingsValue& value) |
| 585 | { |
| 586 | if (value.isNull()) return std::nullopt; |
| 587 | if (value.isBool()) return value.get_bool(); |
| 588 | return InterpretBool(value.get_str()); |
| 589 | } |
| 590 | |
| 591 | bool SettingToBool(const common::SettingsValue& value, bool fDefault) |
| 592 | { |
no test coverage detected