We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8924f51 commit 8f5ac0dCopy full SHA for 8f5ac0d
src/test/util/xoroshiro128plusplus.h
@@ -37,7 +37,7 @@ class XoRoShiRo128PlusPlus
37
: m_s0(SplitMix64(seedval)), m_s1(SplitMix64(seedval)) {}
38
39
// no copy - that is dangerous, we don't want accidentally copy the RNG and then have two streams
40
- // with exactly the same results. If you need a copy, call copy().
+ // with exactly the same results.
41
XoRoShiRo128PlusPlus(const XoRoShiRo128PlusPlus&) = delete;
42
XoRoShiRo128PlusPlus& operator=(const XoRoShiRo128PlusPlus&) = delete;
43
0 commit comments