| 530 | template <typename OutputIt, typename CompiledFormat, typename... Args, |
| 531 | FMT_ENABLE_IF(internal::is_compiled_format<CompiledFormat>::value)> |
| 532 | OutputIt format_to(OutputIt out, const CompiledFormat& cf, |
| 533 | const Args&... args) { |
| 534 | return cf.format(out, args...); |
| 535 | } |
| 536 | # else |
| 537 | template <typename... Args, typename S, |
| 538 | FMT_ENABLE_IF(is_compile_string<S>::value)> |
no test coverage detected