diff --git a/rand/xoshiro.hpp b/rand/xoshiro.hpp index 204e1548..168b486a 100644 --- a/rand/xoshiro.hpp +++ b/rand/xoshiro.hpp @@ -19,6 +19,7 @@ #include "../std.hpp" +#include #include #include @@ -48,6 +49,6 @@ namespace cruft::rand { void long_jump (void); private: - u64 m_state[4]; + std::array m_state; }; } \ No newline at end of file