Destructor. Any dynamically allocated internal storage is freed. @par Complexity Constant. @par Exception Safety No-throw guarantee. */
| 145 | No-throw guarantee. |
| 146 | */ |
| 147 | ~string() noexcept |
| 148 | { |
| 149 | impl_.destroy(sp_); |
| 150 | } |
| 151 | |
| 152 | //------------------------------------------------------ |
| 153 | // |