| 534 | template <typename OutChar, typename InputIt, typename OutputIt, |
| 535 | FMT_ENABLE_IF(!needs_conversion<InputIt, OutChar>::value)> |
| 536 | OutputIt copy_str(InputIt begin, InputIt end, OutputIt it) { |
| 537 | return std::copy(begin, end, it); |
| 538 | } |
| 539 | |
| 540 | template <typename OutChar, typename InputIt, typename OutputIt, |
| 541 | FMT_ENABLE_IF(needs_conversion<InputIt, OutChar>::value)> |