updated build system
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2024-08-31 19:23:01 -05:00
parent f68d7e2ae6
commit 955a3c6dfd
3 changed files with 7 additions and 5 deletions

View File

@ -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);
}