YACLib
C++ library for concurrent tasks execution
Loading...
Searching...
No Matches
random_device.hpp
Go to the documentation of this file.
1#pragma once
2
3#if YACLIB_FAULT_RANDOM_DEVICE == 2
5
6namespace yaclib_std::random {
7
8using random_device = yaclib::detail::thread::RandomDevice;
9
10} // namespace yaclib_std::random
11#else
12# include <random>
13
15
16using std::random_device;
17
18} // namespace yaclib_std::random
19#endif