Skip to content

Commit

Permalink
Fix use of undefined member m_engine_size (#513). (#514)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Jenner <[email protected]>
  • Loading branch information
anjenner and Andrew Jenner authored Jul 9, 2024
1 parent 0d109f3 commit 2d549a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/rng/xorwow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class xorwow_generator_template : public generator_impl_base
m_engines_initialized = other.m_engines_initialized;
m_engines = other.m_engines;
m_start_engine_id = other.m_start_engine_id;
m_engines_size = other.m_engine_size;
m_engines_size = other.m_engines_size;
m_seed = other.m_seed;
m_poisson = std::move(other.m_poisson);

Expand Down

0 comments on commit 2d549a1

Please sign in to comment.