7 Nov
2016
7 Nov
'16
12:28 p.m.
Andrey Semashev wrote:
FWIW, in Boost.Log I'm using my local random_shuffle[1] regardless of the standard library version. Maybe that would be a better solution than conditioning your code on config macros.
[1]: https://github.com/boostorg/log/blob/develop/src/core.cpp#L60
The standard random_shuffle doesn't use rng() % n though, it uses rng(n). rng() % n is non-uniform in general.