diff --git a/include/frozen/random.h b/include/frozen/random.h index d35fb91f..fb3060dd 100644 --- a/include/frozen/random.h +++ b/include/frozen/random.h @@ -69,8 +69,8 @@ class linear_congruential_engine { // constexpr void discard(unsigned long long n) { // while (n--) operator()(); // } - static constexpr result_type min() { return increment == 0u ? 1u : 0u; } - static constexpr result_type max() { return modulus - 1u; } + // static constexpr result_type min() { return increment == 0u ? 1u : 0u; } + // static constexpr result_type max() { return modulus - 1u; } friend constexpr bool operator==(linear_congruential_engine const &self, linear_congruential_engine const &other) { return self.state_ == other.state_;