| 6285 | |
| 6286 | template <typename T, typename... Args> |
| 6287 | void operator()(T&& obj, Args&&... args) const { |
| 6288 | construct(std::forward<T>(obj), std::forward<Args>(args)...); |
| 6289 | } |
| 6290 | }; |
| 6291 | |
| 6292 | struct default_destruct { |
nothing calls this directly
no test coverage detected