| 52 | } |
| 53 | |
| 54 | void operator()(atyp *p) const { std::default_delete<atyp>()(p); } |
| 55 | void operator()(const atyp *p) const { std::default_delete<const atyp>()(p); } |
| 56 | }; |
| 57 | static_assert(std::is_default_constructible<custom_deleter>::value, ""); |
nothing calls this directly
no outgoing calls
no test coverage detected