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