| 1533 | //} |
| 1534 | template<typename T> |
| 1535 | void valueFromLine(const std::string_view::iterator& it, int digits, T& value) |
| 1536 | { |
| 1537 | std::string_view sub(&*it, digits); |
| 1538 | value = std::strtol(sub.data(), nullptr, 10); |
| 1539 | } |
| 1540 | template<> |
| 1541 | void valueFromLine<double>(const std::string_view::iterator& it, int digits, double& value) |
| 1542 | { |
no test coverage detected