2 #ifndef BOOST_SMART_PTR_DETAIL_SHARED_COUNT_HPP_INCLUDED
3 #define BOOST_SMART_PTR_DETAIL_SHARED_COUNT_HPP_INCLUDED
7 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
23 # pragma warn -8027 // Functions containing try are not expanded inline
26 # define BOOST_SP_DISABLE_DEPRECATED
31 #ifdef BOOST_NO_EXCEPTIONS
37 #if !defined _MSC_VER && defined( BOOST_SP_DISABLE_DEPRECATED )
38 #pragma GCC diagnostic push
39 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
55 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
57 int const shared_count_id = 0x2C35F101;
58 int const weak_count_id = 0x298C38A4;
104 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
113 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
114 , id_(shared_count_id)
120 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
121 , id_(shared_count_id)
127 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
128 , id_(shared_count_id)
131 #ifndef BOOST_NO_EXCEPTIONS
150 boost::throw_exception( std::bad_alloc() );
157 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
158 , id_(shared_count_id)
161 #ifndef BOOST_NO_EXCEPTIONS
180 boost::throw_exception(std::bad_alloc());
186 #if !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
189 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
190 , id_(shared_count_id)
193 #ifndef BOOST_NO_EXCEPTIONS
212 boost::throw_exception( std::bad_alloc() );
215 #endif // #ifndef BOOST_NO_EXCEPTIONS
218 #endif // !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
221 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
222 , id_(shared_count_id)
227 #if !defined( BOOST_NO_CXX11_ALLOCATOR )
229 typedef typename std::allocator_traits<A>::template rebind_alloc< impl_type > A2;
233 typedef typename A::template rebind< impl_type >::other A2;
239 #ifndef BOOST_NO_EXCEPTIONS
243 pi_ = a2.allocate( 1 );
244 ::new(
static_cast< void*
>(
pi_ ) ) impl_type( p,
d, a );
252 a2.deallocate(
static_cast< impl_type*
>(
pi_ ), 1 );
260 pi_ = a2.allocate( 1 );
264 ::new(
static_cast< void*
>(
pi_ ) ) impl_type( p,
d, a );
269 boost::throw_exception( std::bad_alloc() );
275 #if !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
278 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
279 , id_(shared_count_id)
284 #if !defined( BOOST_NO_CXX11_ALLOCATOR )
286 typedef typename std::allocator_traits<A>::template rebind_alloc< impl_type > A2;
290 typedef typename A::template rebind< impl_type >::other A2;
296 #ifndef BOOST_NO_EXCEPTIONS
300 pi_ = a2.allocate( 1 );
301 ::new(
static_cast< void*
>(
pi_ ) ) impl_type( p, a );
309 a2.deallocate(
static_cast< impl_type*
>(
pi_ ), 1 );
317 pi_ = a2.allocate( 1 );
321 ::new(
static_cast< void*
>(
pi_ ) ) impl_type( p, a );
326 boost::throw_exception( std::bad_alloc() );
329 #endif // #ifndef BOOST_NO_EXCEPTIONS
332 #endif // !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
334 #ifndef BOOST_NO_AUTO_PTR
340 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
341 , id_(shared_count_id)
344 #ifdef BOOST_NO_EXCEPTIONS
348 boost::throw_exception(std::bad_alloc());
358 #if !defined( BOOST_NO_CXX11_SMART_PTR )
360 template<
class Y,
class D>
362 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
363 , id_(shared_count_id)
368 D2 d2( r.get_deleter() );
371 #ifdef BOOST_NO_EXCEPTIONS
375 boost::throw_exception( std::bad_alloc() );
385 template<
class Y,
class D>
387 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
388 , id_(shared_count_id)
393 D2 d2( r.get_deleter() );
396 #ifdef BOOST_NO_EXCEPTIONS
400 boost::throw_exception( std::bad_alloc() );
411 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
417 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
418 , id_(shared_count_id)
424 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
427 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
428 , id_(shared_count_id)
482 return std::less<sp_counted_base *>()( a.
pi_, b.
pi_ );
508 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
517 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
524 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
532 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
541 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
544 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
556 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
613 return std::less<sp_counted_base *>()(a.
pi_, b.
pi_);
618 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
619 , id_(shared_count_id)
624 throw std::bad_weak_ptr();
629 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
630 , id_(shared_count_id)
643 #if !defined _MSC_VER && defined( BOOST_SP_DISABLE_DEPRECATED )
644 #pragma GCC diagnostic pop
648 # pragma warn .8027 // Functions containing try are not expanded inline
651 #endif // #ifndef BOOST_SMART_PTR_DETAIL_SHARED_COUNT_HPP_INCLUDED