Welcome to mirror list, hosted at ThFree Co, Russian Federation.

random.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c4331445013ce31caa6ad2c6c3cd0a7645e650a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#ifdef new
#undef new
#endif

#include <random>

using std::mt19937;
using std::uniform_int_distribution;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif