| 1000 | #if FMT_USE_NONTYPE_TEMPLATE_ARGS |
| 1001 | template <typename Char, size_t N> struct fixed_string { |
| 1002 | constexpr fixed_string(const Char (&str)[N]) { |
| 1003 | detail::copy_str<Char, const Char*, Char*>(static_cast<const Char*>(str), str + N, data); |
| 1004 | } |
| 1005 | |
| 1006 | Char data[N] = {}; |
| 1007 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected