fix bug getValue didnt return proper values

This commit is contained in:
2025-01-31 17:23:23 +01:00
parent 35a646d3e8
commit c84f02c1e8
4 changed files with 13 additions and 16 deletions

View File

@@ -12,6 +12,6 @@ namespace mrand
{
uint128 getState(uint64_t seed);
float getFloat(uint128 *state);
int getValue(int min, int max, uint128 *state);
int getValue(int max, uint128 *state);
unsigned int computeCRC32(void *data, int dataSize);
}