diff --git a/src/util/helpers/helpers.cpp b/src/util/helpers/helpers.cpp index 27c4f276..df802758 100644 --- a/src/util/helpers/helpers.cpp +++ b/src/util/helpers/helpers.cpp @@ -431,8 +431,8 @@ std::string GenerateRandomString(const size_t length, const std::string_view cha std::random_device rd; std::mt19937 gen(rd()); - //Workaround for static asserts using boost - boost::random::uniform_int_distribution index_dist(0, characters.size() - 1); + //Workaround for static asserts using boost + boost::random::uniform_int_distribution index_dist(0, characters.size() - 1); std::generate_n( result.begin(), length,