2009-03-01 16:00:42 +00:00
|
|
|
#ifndef BOOST_SMART_PTR_MAKE_SHARED_HPP_INCLUDED
|
|
|
|
|
#define BOOST_SMART_PTR_MAKE_SHARED_HPP_INCLUDED
|
|
|
|
|
|
|
|
|
|
// make_shared.hpp
|
|
|
|
|
//
|
Merged revision(s) 81149, 81159, 81171, 81174, 81219-81220, 81222-81224, 81226, 81229-81239, 81242, 81253, 81257-81262, 81265-81268, 81271-81272, 81275-81277, 81299-81300 from trunk:
2012-11-14 13:52:11 +00:00
|
|
|
// Copyright (c) 2007, 2008, 2012 Peter Dimov
|
2009-03-01 16:00:42 +00:00
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
//
|
2017-06-17 00:13:21 +03:00
|
|
|
// See http://www.boost.org/libs/smart_ptr/ for documentation.
|
2009-03-01 16:00:42 +00:00
|
|
|
|
Merged revision(s) 81149, 81159, 81171, 81174, 81219-81220, 81222-81224, 81226, 81229-81239, 81242, 81253, 81257-81262, 81265-81268, 81271-81272, 81275-81277, 81299-81300 from trunk:
2012-11-14 13:52:11 +00:00
|
|
|
#include <boost/smart_ptr/make_shared_object.hpp>
|
2011-03-22 23:45:59 +00:00
|
|
|
|
Merged revision(s) 81149, 81159, 81171, 81174, 81219-81220, 81222-81224, 81226, 81229-81239, 81242, 81253, 81257-81262, 81265-81268, 81271-81272, 81275-81277, 81299-81300 from trunk:
2012-11-14 13:52:11 +00:00
|
|
|
#if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) && !defined( BOOST_NO_SFINAE )
|
|
|
|
|
# include <boost/smart_ptr/make_shared_array.hpp>
|
|
|
|
|
# include <boost/smart_ptr/allocate_shared_array.hpp>
|
2011-03-22 23:45:59 +00:00
|
|
|
#endif
|
|
|
|
|
|
2009-03-01 16:00:42 +00:00
|
|
|
#endif // #ifndef BOOST_SMART_PTR_MAKE_SHARED_HPP_INCLUDED
|