| 532 | |
| 533 | template <typename Char, FMT_ENABLE_IF(is_char<Char>::value)> |
| 534 | FMT_INLINE auto to_string_view(const Char* s) -> basic_string_view<Char> { |
| 535 | return s; |
| 536 | } |
| 537 | template <typename Char, typename Traits, typename Alloc> |
| 538 | inline auto to_string_view(const std::basic_string<Char, Traits, Alloc>& s) |
| 539 | -> basic_string_view<Char> { |
no outgoing calls
no test coverage detected