Home
last modified time | relevance | path

Searched refs:sp_counted_impl_p (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/smart_ptr/detail/
H A Dsp_counted_impl.hpp67 template<class X> class sp_counted_impl_p: public sp_counted_base class
73 sp_counted_impl_p( sp_counted_impl_p const & );
74 sp_counted_impl_p & operator= ( sp_counted_impl_p const & );
76 typedef sp_counted_impl_p<X> this_type;
80 explicit sp_counted_impl_p( X * px ): px_( px ) in sp_counted_impl_p() function in boost::detail::sp_counted_impl_p
H A Dshared_count.hpp144 pi_ = new sp_counted_impl_p<Y>( p ); in shared_count()
154 pi_ = new sp_counted_impl_p<Y>( p ); in shared_count()
355 explicit shared_count( std::auto_ptr<Y> & r ): pi_( new sp_counted_impl_p<Y>( r.get() ) ) in shared_count()