| 2617 | { |
| 2618 | public: |
| 2619 | explicit detect_destruct(std::atomic<bool>* object_exists_) : object_exists(object_exists_) |
| 2620 | { |
| 2621 | *object_exists = true; |
| 2622 | }; |
| 2623 | |
| 2624 | detect_destruct(const detect_destruct&) = delete; |
| 2625 | detect_destruct(detect_destruct&&) noexcept = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected