| 542 | } |
| 543 | |
| 544 | [[nodiscard]] std::string ParamValue::get_string() const { |
| 545 | return std::visit([](auto value) { return to_string(value); }, _value); |
| 546 | } |
| 547 | |
| 548 | [[nodiscard]] bool ParamValue::is_same_type(const ParamValue& rhs) const { |
| 549 | if ((std::get_if<uint8_t>(&_value) && std::get_if<uint8_t>(&rhs._value)) || |
no test coverage detected