From 02043f812c1b37add342eb759654a8e6c99b2eb8 Mon Sep 17 00:00:00 2001 From: Joyce Er <30305945+joyceerhl@users.noreply.github.com> Date: Wed, 25 Mar 2020 23:45:27 -0700 Subject: [PATCH] Remove comment following acceptance of LWG-3150 (#638) Fixes #528. --- stl/inc/random | 2 -- 1 file changed, 2 deletions(-) diff --git a/stl/inc/random b/stl/inc/random index 9f4004ea3..e4e76531e 100644 --- a/stl/inc/random +++ b/stl/inc/random @@ -64,11 +64,9 @@ template concept uniform_random_bit_generator = invocable<_Ty&> && unsigned_integral> && requires { { (_Ty::min)() } -> same_as>; { (_Ty::max)() } -> same_as>; -#if 1 // Implement the PR for LWG-3150 typename _Require_constant<(_Ty::min)()>; typename _Require_constant<(_Ty::max)()>; requires (_Ty::min)() < (_Ty::max)(); -#endif // LWG-3150 }; // clang-format on #endif // __cpp_lib_concepts