123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_RANDOM_DETAIL_GENERATOR_BITS_HPP
- #define BOOST_RANDOM_DETAIL_GENERATOR_BITS_HPP
- #include <boost/limits.hpp>
- namespace boost {
- namespace random {
- namespace detail {
- template<class URNG>
- struct generator_bits {
- static std::size_t value() {
- return std::numeric_limits<typename URNG::result_type>::digits;
- }
- };
- }
- }
- }
- #endif
|