Skip to content

Commit

Permalink
Update interval_test.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksraiden authored Nov 4, 2024
1 parent d7c43da commit 4699236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cppunit/interval_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ TEST(IntervalSet, Simple) {
std::uniform_int_distribution<int> dist_int(0, 50);
std::random_device rd{};
// Using random seed 0
std::mt19937 rand_gen(rd());
std::mt19937 rand_gen(rd()); // NOSONAR
for (auto i = 0; i < 2000; ++i) {
// generate random double
auto gen = [&dist, &rand_gen] { return dist(rand_gen); };
Expand Down

0 comments on commit 4699236

Please sign in to comment.