Brett 2024-08-27 17:25:37 -04:00
parent b6354bed78
commit 79e080cfd3
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake)
set(BLT_VERSION 0.19.3)
set(BLT_VERSION 0.19.4)
set(BLT_TEST_VERSION 0.0.1)
set(BLT_TARGET BLT)

View File

@ -208,7 +208,7 @@ namespace blt::random
constexpr result_type operator()()
{
return get_u64(min(), max());
return get_u64(min(), max() + 1);
}
private: