Skip to content

Commit 7eae068

Browse files
committed
CI failures
1 parent 643c0e3 commit 7eae068

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

libcudacxx/test/libcudacxx/std/random/distribution/exponential.pass.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ struct exponential_cdf
4141
template <class T>
4242
__host__ __device__ void test()
4343
{
44-
const bool test_constexpr = false;
45-
using D = cuda::std::exponential_distribution<T>;
46-
using P = typename D::param_type;
47-
using G = cuda::std::philox4x64;
48-
cuda::std::array<P, 5> params = {P(1), P(0.5), P(2), P(0.1), P(10)};
44+
[[maybe_unused]] const bool test_constexpr = false;
45+
using D = cuda::std::exponential_distribution<T>;
46+
using P = typename D::param_type;
47+
using G = cuda::std::philox4x64;
48+
cuda::std::array<P, 5> params = {P(T(1)), P(T(0.5)), P(T(2)), P(T(0.1)), P(T(10))};
4949
test_distribution<D, true, G, test_constexpr>(params, exponential_cdf<T>{});
5050
}
5151

0 commit comments

Comments
 (0)