diff --git a/src/test/util/xoroshiro128plusplus.h b/src/test/util/xoroshiro128plusplus.h index 1f579d8280c..93ab473b37d 100644 --- a/src/test/util/xoroshiro128plusplus.h +++ b/src/test/util/xoroshiro128plusplus.h @@ -37,7 +37,7 @@ public: : m_s0(SplitMix64(seedval)), m_s1(SplitMix64(seedval)) {} // no copy - that is dangerous, we don't want accidentally copy the RNG and then have two streams - // with exactly the same results. If you need a copy, call copy(). + // with exactly the same results. XoRoShiRo128PlusPlus(const XoRoShiRo128PlusPlus&) = delete; XoRoShiRo128PlusPlus& operator=(const XoRoShiRo128PlusPlus&) = delete;