From 8f5ac0d0b608bdf396d8f2d758a792f869c2cd2a Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 8 Jun 2024 08:42:53 -0400 Subject: [PATCH] xoroshiro128plusplus: drop comment about nonexisting copy() --- src/test/util/xoroshiro128plusplus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;