| 19 | |
| 20 | template<typename StringType> |
| 21 | void int_to_string(StringType& target, std::size_t value) |
| 22 | { |
| 23 | // For ADL |
| 24 | using std::to_string; |
| 25 | target = to_string(value); |
| 26 | } |
| 27 | |
| 28 | template<typename StringType> |
| 29 | StringType to_string(std::size_t value) |
no test coverage detected