mirror of
				https://github.com/boostorg/smart_ptr.git
				synced 2025-10-30 23:31:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //
 | |
| // get_deleter_test3.cpp
 | |
| //
 | |
| // Copyright 2002, 2017 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/shared_ptr.hpp>
 | |
| #include <boost/make_shared.hpp>
 | |
| #include <boost/core/lightweight_test.hpp>
 | |
| 
 | |
| struct deleter
 | |
| {
 | |
| };
 | |
| 
 | |
| struct deleter2;
 | |
| 
 | |
| struct X
 | |
| {
 | |
| };
 | |
| 
 | |
| int main()
 | |
| {
 | |
|     {
 | |
|         boost::shared_ptr<X> p = boost::make_shared<X>();
 | |
| 
 | |
|         BOOST_TEST(boost::get_deleter<void>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<void const>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<int>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<int const>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<X>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<X const>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<deleter>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<deleter const>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<deleter2>(p) == 0);
 | |
|         BOOST_TEST(boost::get_deleter<deleter2 const>(p) == 0);
 | |
|     }
 | |
| 
 | |
|     return boost::report_errors();
 | |
| }
 | |
| 
 | |
| struct deleter2
 | |
| {
 | |
| };
 |