Commit a5803f6b authored by Stefan Westerfeld's avatar Stefan Westerfeld

Fix random generator build on macOS.

Signed-off-by: Stefan Westerfeld's avatarStefan Westerfeld <stefan@space.twc.de>
parent 24305321
......@@ -57,13 +57,13 @@ public:
return buffer[buffer_pos++];
}
uint64_t
min() const
static constexpr uint64_t
min()
{
return 0;
}
uint64_t
max() const
static constexpr uint64_t
max()
{
return UINT64_MAX;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment