| 555 | |
| 556 | template <typename OutChar, typename InputIt, typename OutputIt> |
| 557 | FMT_CONSTEXPR FMT_NOINLINE auto copy_noinline(InputIt begin, InputIt end, |
| 558 | OutputIt out) -> OutputIt { |
| 559 | return copy<OutChar>(begin, end, out); |
| 560 | } |
| 561 | |
| 562 | // A public domain branchless UTF-8 decoder by Christopher Wellons: |
| 563 | // https://github.com/skeeto/branchless-utf8 |
nothing calls this directly
no outgoing calls
no test coverage detected