We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
constexpr
constexpr_random.h
1 parent 177ec8e commit 712c95cCopy full SHA for 712c95c
libcxx/test/support/constexpr_random.h
@@ -488,8 +488,8 @@ class linear_congruential_engine {
488
static TEST_CONSTEXPR const result_type multiplier = a;
489
static TEST_CONSTEXPR const result_type increment = c;
490
static TEST_CONSTEXPR const result_type modulus = m;
491
- static TEST_CONSTEXPR_CXX14 result_type min() { return min_value; }
492
- static TEST_CONSTEXPR_CXX14 result_type max() { return max_value; }
+ static TEST_CONSTEXPR result_type min() { return min_value; }
+ static TEST_CONSTEXPR result_type max() { return max_value; }
493
static TEST_CONSTEXPR const result_type default_seed = 1u;
494
495
// constructors and seeding functions
0 commit comments