| 500 | |
| 501 | template <typename T, typename OutputIt> |
| 502 | constexpr auto to_pointer(OutputIt, size_t) -> T* { |
| 503 | return nullptr; |
| 504 | } |
| 505 | template <typename T> FMT_CONSTEXPR auto to_pointer(T*& ptr, size_t n) -> T* { |
| 506 | T* begin = ptr; |
| 507 | ptr += n; |
nothing calls this directly
no test coverage detected