| 165 | } |
| 166 | |
| 167 | std::vector<std::string> cfg::make_float_range(f64 min, f64 max) |
| 168 | { |
| 169 | return {std::to_string(min), std::to_string(max)}; |
| 170 | } |
| 171 | |
| 172 | bool try_to_float(f64* out, std::string_view value, f64 min, f64 max) |
| 173 | { |
nothing calls this directly
no test coverage detected