Remove unneeded member initializer:

* This works around a clang bug.
* Also un-commented correctly deleted copy members.
This commit is contained in:
Howard Hinnant
2015-04-10 17:33:36 -04:00
committed by Nik Bougalis
parent 1b49776819
commit 1ba7c4b6ee

View File

@@ -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()) {}