update boost
This commit is contained in:
@@ -55,9 +55,9 @@ public:
|
||||
BOOST_STATIC_CONSTANT(UIntType, default_seed = 331u);
|
||||
|
||||
/** Returns the smallest value that the generator can produce. */
|
||||
static result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () { return 0; }
|
||||
static BOOST_CONSTEXPR result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () { return 0; }
|
||||
/** Returns the largest value that the generator can produce. */
|
||||
static result_type max BOOST_PREVENT_MACRO_SUBSTITUTION ()
|
||||
static BOOST_CONSTEXPR result_type max BOOST_PREVENT_MACRO_SUBSTITUTION ()
|
||||
{ return low_bits_mask_t<w>::sig_bits; }
|
||||
|
||||
/** Creates a new @c lagged_fibonacci_engine and calls @c seed(). */
|
||||
@@ -321,9 +321,9 @@ public:
|
||||
}
|
||||
|
||||
/** Returns the smallest value that the generator can produce. */
|
||||
static result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () { return result_type(0); }
|
||||
static BOOST_CONSTEXPR result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () { return result_type(0); }
|
||||
/** Returns the upper bound of the generators outputs. */
|
||||
static result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () { return result_type(1); }
|
||||
static BOOST_CONSTEXPR result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () { return result_type(1); }
|
||||
|
||||
/** Returns the next value of the generator. */
|
||||
result_type operator()()
|
||||
|
||||
Reference in New Issue
Block a user