12345678910111213141516171819202122232425 |
- #ifndef BOOST_MP_IS_VARIABLE_PRECISION_HPP
- #define BOOST_MP_IS_VARIABLE_PRECISION_HPP
- #include <boost/multiprecision/detail/number_base.hpp>
- namespace boost { namespace multiprecision { namespace detail {
- template <class Backend>
- struct is_variable_precision : public std::integral_constant<bool, false>
- {};
- template <class Backend, expression_template_option ExpressionTemplates>
- struct is_variable_precision<number<Backend, ExpressionTemplates> > : public is_variable_precision<Backend>
- {};
- }
- }
- }
- #endif
|