mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
xoroshiro128plusplus: drop comment about nonexisting copy()
This commit is contained in:
parent
8924f5120f
commit
8f5ac0d0b6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue