| 107 | char data[size] = {}; |
| 108 | |
| 109 | constexpr fixed_string(const char (&m)[size]) { |
| 110 | for (size_t i = 0; i != size; ++i) data[i] = m[i]; |
| 111 | } |
| 112 | }; |
| 113 | |
| 114 | static constexpr auto fs = fixed_string("foo"); |
nothing calls this directly
no outgoing calls
no test coverage detected