]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/math/example/table_type.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / math / example / table_type.hpp
CommitLineData
7c673cae
FG
1// Copyright John Maddock 2012.
2
3// Use, modification and distribution are subject to the
4// Boost Software License, Version 1.0.
5// (See accompanying file LICENSE_1_0.txt
6// or copy at http://www.boost.org/LICENSE_1_0.txt)
7
8#ifndef BOOST_MATH_TEST_TABLE_TYPE_HPP
9#define BOOST_MATH_TEST_TABLE_TYPE_HPP
10
11template <class T>
12struct table_type
13{
14 typedef T type;
15};
16
17namespace boost{ namespace math{ namespace concepts{
18
19 class real_concept;
20
21}}}
22
23template <>
24struct table_type<boost::math::concepts::real_concept>
25{
26 typedef long double type;
27};
28
29#endif