forked from organicmaps/organicmaps
Add iota to std
This commit is contained in:
parent
24765c5607
commit
3e212a01d1
2 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
|||
|
||||
#include "std/fstream.hpp"
|
||||
#include "std/iostream.hpp"
|
||||
#include "std/numeric.hpp"
|
||||
|
||||
#include "3party/gflags/src/gflags/gflags.h"
|
||||
|
||||
|
@ -54,8 +55,7 @@ int main(int argc, char * argv[])
|
|||
LOG_SHORT(LINFO, ("Num of tourism elements:", elements.size()));
|
||||
|
||||
vector<size_t> elementIndexes(elements.size());
|
||||
for (size_t i = 0; i < elementIndexes.size(); ++i)
|
||||
elementIndexes[i] = i;
|
||||
iota(elementIndexes.begin(), elementIndexes.end(), 0);
|
||||
|
||||
random_shuffle(elementIndexes.begin(), elementIndexes.end());
|
||||
if (FLAGS_selection_size < elementIndexes.size())
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include <numeric>
|
||||
using std::accumulate;
|
||||
using std::iota;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
|
|
Loading…
Add table
Reference in a new issue