forked from boostorg/throw_exception
Merge branch 'develop'
This commit is contained in:
@ -12,6 +12,14 @@
|
|||||||
#pragma warning(push,1)
|
#pragma warning(push,1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef BOOST_EXCEPTION_MINI_BOOST
|
||||||
|
#include <memory>
|
||||||
|
namespace boost { namespace exception_detail { using std::shared_ptr; } }
|
||||||
|
#else
|
||||||
|
namespace boost { template <class T> class shared_ptr; };
|
||||||
|
namespace boost { namespace exception_detail { using boost::shared_ptr; } }
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
{
|
{
|
||||||
@ -144,9 +152,6 @@ boost
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
template <class T>
|
|
||||||
class shared_ptr;
|
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
exception_detail
|
exception_detail
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user