Skip to content

Commit

Permalink
still trying to make compilers happy
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjmurray committed Sep 28, 2024
1 parent 13d9a9b commit ccc5d20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_basic_rng/test_r123.cc
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,8 @@ class TestRNGState : public ::testing::Test {

void test_uint_key_constructors() {
using RNG = r123::Philox4x32;
ASSERT_EQ(RandBLAS::RNGState<RNG>::len_k, 2);
int len_k = RNG::key_type::static_size;
ASSERT_EQ(len_k, 2);
// No-arugment constructor
RandBLAS::RNGState<RNG> s;
ASSERT_EQ(s.key[0], 0);
Expand Down

0 comments on commit ccc5d20

Please sign in to comment.