| 122 | } |
| 123 | |
| 124 | std::vector<std::string> cfg::make_uint_range(u64 min, u64 max) |
| 125 | { |
| 126 | return {std::to_string(min), std::to_string(max)}; |
| 127 | } |
| 128 | |
| 129 | bool try_to_uint64(u64* out, std::string_view value, u64 min, u64 max) |
| 130 | { |
nothing calls this directly
no test coverage detected