/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/boost/libs/smart_ptr/test/shared_ptr_alloc11_test.cpp
116 строк
2 KB
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
#include <boost/config.hpp> // shared_ptr_alloc11_test.cpp // // Test the allocator constructor with a C++11 minimal allocator // // Copyright (c) 2005, 2014 Peter Dimov // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt #include <boost/core/lightweight_test.hpp> #include <boost/shared_ptr.hpp> #include <memory> #include <cstddef> #if !defined( BOOST_NO_CXX11_ALLOCATOR ) template< class T > class cxx11_allocator { public: typedef T value_type; cxx11_allocator() { } template< class Y > cxx11_allocator( cxx11_allocator<Y> const & ) { } T * allocate( std::size_t n ) { return static_cast< T* >( ::operator new( n * sizeof( T ) ) ); } void deallocate( T * p, std::size_t n ) { ::operator delete( p ); } }; // struct D; struct X { static int instances; X(): deleted_( false ) { ++instances; } ~X() { BOOST_TEST( deleted_ ); --instances; } private: friend struct D; bool deleted_; X( X const & ); X & operator=( X const & ); }; int X::instances = 0; struct D { void operator()( X * px ) const { px->deleted_ = true; delete px; } }; int main() { BOOST_TEST( X::instances == 0 ); boost::shared_ptr<void> pv( new X, D(), cxx11_allocator<X>() ); BOOST_TEST( X::instances == 1 ); pv.reset(); BOOST_TEST( X::instances == 0 ); pv.reset( new X, D(), cxx11_allocator<void>() ); BOOST_TEST( X::instances == 1 ); pv.reset(); BOOST_TEST( X::instances == 0 ); return boost::report_errors(); } #else // !defined( BOOST_NO_CXX11_ALLOCATOR ) int main() { return 0; } #endif