| 966 | namespace detail { |
| 967 | template <typename Char, size_t N> struct fixed_string { |
| 968 | FMT_CONSTEXPR fixed_string(const Char (&s)[N]) { |
| 969 | detail::copy<Char, const Char*, Char*>(static_cast<const Char*>(s), s + N, |
| 970 | data); |
| 971 | } |
| 972 | Char data[N] = {}; |
| 973 | }; |
| 974 |
nothing calls this directly
no outgoing calls
no test coverage detected