| 396 | ~storage() { destroy(); } |
| 397 | |
| 398 | void destroy() noexcept |
| 399 | { |
| 400 | if (local_.kind_ < object_k) |
| 401 | local_.~local(); |
| 402 | else |
| 403 | remote_.~remote(); |
| 404 | } |
| 405 | |
| 406 | local local_; |
| 407 | remote remote_; |
nothing calls this directly
no outgoing calls
no test coverage detected