replace random_shuffle with shuffle

random_shuffle is gone with C++17.

Found and fixed with clang-tidy.
This commit is contained in:
Rosen Penev 2020-01-16 22:10:15 -08:00
parent 6cc388c1bc
commit eabcafa516
No known key found for this signature in database
GPG key ID: 36D31CFA845F0E3B
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,6 @@
#include <string.h>
#include "I2PEndian.h"
#include <random>
#include <thread>
#include <algorithm>
#include <vector>
@ -45,7 +46,7 @@ namespace tunnel
// shuffle records
std::vector<int> recordIndicies;
for (int i = 0; i < numRecords; i++) recordIndicies.push_back(i);
std::random_shuffle (recordIndicies.begin(), recordIndicies.end());
std::shuffle (recordIndicies.begin(), recordIndicies.end(), std::mt19937(std::random_device()()));
// create real records
uint8_t * records = msg->GetPayload () + 1;