Index: boost/enable_shared_from_this.hpp =================================================================== --- boost/enable_shared_from_this.hpp (revision 44152) +++ boost/enable_shared_from_this.hpp (working copy) @@ -109,6 +109,15 @@ } }; +// register enable_shared_from_this as an observer +template void sp_notify_observer( shared_ptr * ptr, enable_shared_from_this const * pe ) +{ + if(pe != 0) + { + pe->_internal_accept_owner(*ptr); + } +} + } // namespace boost #endif // #ifndef BOOST_ENABLE_SHARED_FROM_THIS_HPP_INCLUDED Index: boost/shared_ptr.hpp =================================================================== --- boost/shared_ptr.hpp (revision 44152) +++ boost/shared_ptr.hpp (working copy) @@ -50,7 +50,6 @@ template class shared_ptr; template class weak_ptr; -template class enable_shared_from_this; namespace detail { @@ -93,14 +92,6 @@ struct ignore_enable_shared_from_this_tag {}; -template void sp_enable_shared_from_this( boost::shared_ptr * ptr, boost::enable_shared_from_this const * pe ) -{ - if(pe != 0) - { - pe->_internal_accept_owner(*ptr); - } -} - #ifdef _MANAGED // Avoid C4793, ... causes native code generation @@ -110,18 +101,18 @@ template sp_any_pointer( T* ) {} }; -inline void sp_enable_shared_from_this( sp_any_pointer, sp_any_pointer ) +inline void sp_notify_observer( sp_any_pointer, sp_any_pointer ) { } #else // _MANAGED #ifdef sgi -// Turn off: the last argument of the varargs function "sp_enable_shared_from_this" is unnamed +// Turn off: the last argument of the varargs function "sp_notify_observer" is unnamed # pragma set woff 3506 #endif -inline void sp_enable_shared_from_this( ... ) +inline void sp_notify_observer( ... ) { } @@ -178,7 +169,8 @@ template explicit shared_ptr( Y * p ): px( p ), pn( p ) // Y must be complete { - boost::detail::sp_enable_shared_from_this( this, p ); + using detail::sp_notify_observer; + sp_notify_observer( this, p ); } // @@ -189,14 +181,16 @@ template shared_ptr(Y * p, D d): px(p), pn(p, d) { - boost::detail::sp_enable_shared_from_this( this, p ); + using detail::sp_notify_observer; + sp_notify_observer( this, p ); } // As above, but with allocator. A's copy constructor shall not throw. template shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a ) { - boost::detail::sp_enable_shared_from_this( this, p ); + using detail::sp_notify_observer; + sp_notify_observer( this, p ); } // generated copy constructor, assignment, destructor are fine... @@ -272,7 +266,8 @@ { Y * tmp = r.get(); pn = boost::detail::shared_count(r); - boost::detail::sp_enable_shared_from_this( this, tmp ); + using detail::sp_notify_observer; + sp_notify_observer( this, tmp ); } #if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) @@ -282,7 +277,8 @@ { typename Ap::element_type * tmp = r.get(); pn = boost::detail::shared_count( r ); - boost::detail::sp_enable_shared_from_this( this, tmp ); + using detail::sp_notify_observer; + sp_notify_observer( this, tmp ); }