| 59 | /// Custom deleter that is not default constructible. |
| 60 | struct custom_deleter_nd : custom_deleter { |
| 61 | custom_deleter_nd() = delete; |
| 62 | explicit custom_deleter_nd(const std::string &trace_txt_) : custom_deleter(trace_txt_) {} |
| 63 | }; |
| 64 | static_assert(!std::is_default_constructible<custom_deleter_nd>::value, ""); |
nothing calls this directly
no outgoing calls
no test coverage detected