| 12 | CharT data[N]{}; |
| 13 | |
| 14 | constexpr fixed_string(const CharT (&str)[N]) |
| 15 | { |
| 16 | std::copy_n(str, N, data); |
| 17 | } |
| 18 | }; |
| 19 | |
| 20 | template<fixed_string Str> // #A Takes the fixed string as NTTP |
nothing calls this directly
no outgoing calls
no test coverage detected