]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/python/include/boost/python/detail/copy_ctor_mutates_rhs.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / python / include / boost / python / detail / copy_ctor_mutates_rhs.hpp
CommitLineData
7c673cae
FG
1// Copyright David Abrahams 2003.
2// Distributed under the Boost Software License, Version 1.0. (See
3// accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5#ifndef COPY_CTOR_MUTATES_RHS_DWA2003219_HPP
6# define COPY_CTOR_MUTATES_RHS_DWA2003219_HPP
7
8#include <boost/python/detail/is_auto_ptr.hpp>
9#include <boost/mpl/bool.hpp>
10
11namespace boost { namespace python { namespace detail {
12
13template <class T>
14struct copy_ctor_mutates_rhs
15 : is_auto_ptr<T>
16{
17};
18
19}}} // namespace boost::python::detail
20
21#endif // COPY_CTOR_MUTATES_RHS_DWA2003219_HPP