Chris@16: /////////////////////////////////////////////////////////////// Chris@16: // Copyright 2013 John Maddock. Distributed under the Boost Chris@16: // Software License, Version 1.0. (See accompanying file Chris@16: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_ Chris@16: Chris@16: #ifndef BOOST_MP_CPP_INT_VP_HPP Chris@16: #define BOOST_MP_CPP_INT_VP_HPP Chris@16: Chris@16: namespace boost{ namespace multiprecision{ Chris@16: Chris@16: namespace literals{ namespace detail{ Chris@16: Chris@16: template Chris@16: struct value_pack Chris@16: { Chris@16: constexpr value_pack(){} Chris@16: Chris@16: typedef value_pack<0, VALUES...> next_type; Chris@16: }; Chris@16: template Chris@16: struct is_value_pack{ static constexpr bool value = false; }; Chris@16: template Chris@16: struct is_value_pack >{ static constexpr bool value = true; }; Chris@16: Chris@16: struct negate_tag{}; Chris@16: Chris@16: constexpr negate_tag make_negate_tag() Chris@16: { Chris@16: return negate_tag(); Chris@16: } Chris@16: Chris@16: Chris@16: }}}} // namespaces Chris@16: Chris@16: #endif // BOOST_MP_CPP_INT_CORE_HPP Chris@16: