diff options
author | fanquake <fanquake@gmail.com> | 2023-01-05 19:52:33 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-01-12 13:42:44 +0000 |
commit | 672f7ad747ecc6e04472f96fa88332be1f39d39b (patch) | |
tree | c68c5f09592c4f219d2fbfb7faf07a0dbc1b1292 /src/random.h | |
parent | edc3d1b296e34838d649dc21b8483a52e214932a (diff) |
doc: remove usages of C++11
Now it's just the standard library.
Diffstat (limited to 'src/random.h')
-rw-r--r-- | src/random.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.h b/src/random.h index 6223da0377..e890e909c7 100644 --- a/src/random.h +++ b/src/random.h @@ -250,7 +250,7 @@ public: /* interval [0..0] */ Dur{0}; }; - // Compatibility with the C++11 UniformRandomBitGenerator concept + // Compatibility with the UniformRandomBitGenerator concept typedef uint64_t result_type; static constexpr uint64_t min() { return 0; } static constexpr uint64_t max() { return std::numeric_limits<uint64_t>::max(); } |