]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/multiprecision/traits/transcendental_reduction_type.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / multiprecision / traits / transcendental_reduction_type.hpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Copyright 2020 John Maddock. Distributed under the Boost
3 // Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #ifndef BOOST_MP_TRANS_RED_TYPE_HPP
7 #define BOOST_MP_TRANS_RED_TYPE_HPP
8
9 namespace boost { namespace multiprecision { namespace detail {
10
11 template <class T>
12 struct transcendental_reduction_type
13 {
14 typedef T type;
15 };
16
17 }
18 }
19 } // namespace boost::multiprecision::detail
20
21 #endif // BOOST_MP_TRANS_RED_TYPE_HPP