Use std::random_device

This commit is contained in:
Eelco Dolstra 2016-10-05 21:29:18 +02:00
parent 86e8c67efc
commit c6a929986a

View file

@ -295,6 +295,7 @@ struct CurlDownloader : public Downloader
std::thread workerThread;
CurlDownloader()
: mt19937(rd())
{
static std::once_flag globalInit;
std::call_once(globalInit, curl_global_init, CURL_GLOBAL_ALL);