]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/include/boost/thread/csbl/memory/default_delete.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / thread / include / boost / thread / csbl / memory / default_delete.hpp
1 // Copyright (C) 2013 Vicente J. Botet Escriba
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 // 2013/10 Vicente J. Botet Escriba
7 // Creation.
8
9 #ifndef BOOST_CSBL_MEMORY_DEFAULT_DELETE_HPP
10 #define BOOST_CSBL_MEMORY_DEFAULT_DELETE_HPP
11
12 #include <boost/thread/csbl/memory/config.hpp>
13
14 // 20.8.1 class template unique_ptr:
15 // default_delete
16
17 #if defined BOOST_NO_CXX11_SMART_PTR
18 #include <boost/move/unique_ptr.hpp>
19
20 namespace boost
21 {
22 namespace csbl
23 {
24 using ::boost::movelib::default_delete;
25 }
26 }
27 #else
28 namespace boost
29 {
30 namespace csbl
31 {
32 using ::std::default_delete;
33 }
34 }
35 #endif // defined BOOST_NO_CXX11_SMART_PTR
36
37 namespace boost
38 {
39 using ::boost::csbl::default_delete;
40 }
41 #endif // header