Skip to content

Commit 8f5ac0d

Browse files
committed
xoroshiro128plusplus: drop comment about nonexisting copy()
1 parent 8924f51 commit 8f5ac0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/util/xoroshiro128plusplus.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class XoRoShiRo128PlusPlus
3737
: m_s0(SplitMix64(seedval)), m_s1(SplitMix64(seedval)) {}
3838

3939
// 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().
40+
// with exactly the same results.
4141
XoRoShiRo128PlusPlus(const XoRoShiRo128PlusPlus&) = delete;
4242
XoRoShiRo128PlusPlus& operator=(const XoRoShiRo128PlusPlus&) = delete;
4343

0 commit comments

Comments
 (0)