| 70 | } |
| 71 | |
| 72 | std::vector<std::string> cfg::make_int_range(s64 min, s64 max) |
| 73 | { |
| 74 | return {std::to_string(min), std::to_string(max)}; |
| 75 | } |
| 76 | |
| 77 | bool try_to_int64(s64* out, std::string_view value, s64 min, s64 max) |
| 78 | { |
nothing calls this directly
no test coverage detected