updated build system
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
This commit is contained in:
@ -114,7 +114,7 @@ inline auto generate_random_between(data_t begin, data_t end) -> data_t {
|
||||
throw std::range_error("end must be greater than begin");
|
||||
}
|
||||
|
||||
static std::mt19937 gen(std::random_device{}());
|
||||
std::mt19937 gen(std::random_device{}());
|
||||
std::uniform_int_distribution<data_t> dis(begin, end);
|
||||
return dis(gen);
|
||||
}
|
||||
|
Reference in New Issue
Block a user