Chris@16: /////////////////////////////////////////////////////////////////////////////// Chris@16: // Copyright 2012 John Maddock. Chris@16: // Copyright Christopher Kormanyos 2013. 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_0.txt) Chris@16: // Chris@16: Chris@16: #ifndef BOOST_MP_DETAIL_REBIND_HPP Chris@16: #define BOOST_MP_DETAIL_REBIND_HPP Chris@16: Chris@16: namespace boost { namespace multiprecision { namespace backends { namespace detail Chris@16: { Chris@16: template Chris@16: struct rebind Chris@16: { Chris@16: typedef typename my_allocator::template rebind::other type; Chris@16: }; Chris@16: } } } } // namespace boost::multiprecision::backends::detail Chris@16: Chris@16: #endif // BOOST_MP_DETAIL_REBIND_HPP