mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Remove unneeded member initializer:
* This works around a clang bug. * Also un-commented correctly deleted copy members.
This commit is contained in:
committed by
Nik Bougalis
parent
1b49776819
commit
1ba7c4b6ee
@@ -59,7 +59,7 @@ make_seed_pair() noexcept
|
||||
{
|
||||
std::mutex mutex;
|
||||
std::random_device rng;
|
||||
std::mt19937_64 gen {rng()};
|
||||
std::mt19937_64 gen;
|
||||
std::uniform_int_distribution <std::uint64_t> dist;
|
||||
|
||||
state_t() : gen(rng()) {}
|
||||
|
||||
Reference in New Issue
Block a user