| 299 | // deleter constructor helper |
| 300 | |
| 301 | template< class T, class Y > inline void sp_deleter_construct( boost::shared_ptr< T > * ppx, Y * p ) |
| 302 | { |
| 303 | boost::detail::sp_enable_shared_from_this( ppx, p, p ); |
| 304 | } |
| 305 | |
| 306 | #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) |
| 307 |
no test coverage detected