| 5728 | |
| 5729 | template <typename T, typename... Args> |
| 5730 | void operator()(T&& obj, Args&&... args) const { |
| 5731 | construct(std::forward<T>(obj), std::forward<Args>(args)...); |
| 5732 | } |
| 5733 | }; |
| 5734 | |
| 5735 | struct default_destruct { |
nothing calls this directly
no test coverage detected