Skip to content

Commit ef12a10

Browse files
committed
The seed should be public otherwise serialization is hard.
1 parent 34e11ee commit ef12a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hashutil.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ class TwoIndependentMultiplyShift {
3333
};
3434

3535
class SimpleMixSplit {
36-
uint64_t seed;
3736

3837
public:
38+
uint64_t seed;
3939
SimpleMixSplit() {
4040
::std::random_device random;
4141
seed = random();

0 commit comments

Comments
 (0)