| 2754 | #pragma region Constructors and STL Utilities |
| 2755 | |
| 2756 | sz_constexpr_if_cpp14 basic_string() noexcept { |
| 2757 | // ! Instead of relying on the `sz_string_init`, we have to reimplement it to support `constexpr`. |
| 2758 | string_.internal.start = &string_.internal.chars[0]; |
| 2759 | string_.words[1] = 0; |
| 2760 | string_.words[2] = 0; |
| 2761 | string_.words[3] = 0; |
| 2762 | } |
| 2763 | |
| 2764 | ~basic_string() noexcept { |
| 2765 | _with_alloc([&](sz_alloc_type &alloc) { |
nothing calls this directly
no test coverage detected