| 2762 | } |
| 2763 | |
| 2764 | ~basic_string() noexcept { |
| 2765 | _with_alloc([&](sz_alloc_type &alloc) { |
| 2766 | sz_string_free(&string_, &alloc); |
| 2767 | return sz_success_k; |
| 2768 | }); |
| 2769 | } |
| 2770 | |
| 2771 | basic_string(basic_string &&other) noexcept { move(other); } |
| 2772 | basic_string &operator=(basic_string &&other) noexcept { |
nothing calls this directly
no test coverage detected