]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/exception/detail/shared_ptr.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / exception / detail / shared_ptr.hpp
1 //Copyright (c) 2006-2008 Emil Dotchevski and Reverge Studios, Inc.
2
3 //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #ifndef UUID_837060E885AF11E68DA91D15E31AC075
7 #define UUID_837060E885AF11E68DA91D15E31AC075
8
9 #ifdef BOOST_EXCEPTION_MINI_BOOST
10 #include <memory>
11 namespace boost { namespace exception_detail { using std::shared_ptr; } }
12 #else
13 #include <boost/shared_ptr.hpp>
14 namespace boost { namespace exception_detail { using boost::shared_ptr; } }
15 #endif
16
17 #endif