Chris@16: /* boost random/detail/generator_bits.hpp header file Chris@16: * Chris@16: * Copyright Steven Watanabe 2011 Chris@16: * Distributed under the Boost Software License, Version 1.0. (See Chris@16: * accompanying file LICENSE_1_0.txt or copy at Chris@16: * http://www.boost.org/LICENSE_1_0.txt) Chris@16: * Chris@16: * See http://www.boost.org for most recent version including documentation. Chris@16: * Chris@101: * $Id$ Chris@16: * Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_RANDOM_DETAIL_GENERATOR_BITS_HPP Chris@16: #define BOOST_RANDOM_DETAIL_GENERATOR_BITS_HPP Chris@16: Chris@16: #include Chris@16: Chris@16: namespace boost { Chris@16: namespace random { Chris@16: namespace detail { Chris@16: Chris@16: // This is a temporary measure that retains backwards Chris@16: // compatibility. Chris@16: template Chris@16: struct generator_bits { Chris@16: static std::size_t value() { Chris@16: return std::numeric_limits::digits; Chris@16: } Chris@16: }; Chris@16: Chris@16: } // namespace detail Chris@16: } // namespace random Chris@16: } // namespace boost Chris@16: Chris@16: #endif // BOOST_RANDOM_DETAIL_GENERATOR_BITS_HPP