Merge pull request #7917 from lmbarros/master
Fix RANDOM_MAX, which is 2^32-1 with PCG32. [ci skip]
This commit is contained in:
commit
68fe36ed26
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public:
|
|||
Math() {} // useless to instance
|
||||
|
||||
enum {
|
||||
RANDOM_MAX=2147483647L
|
||||
RANDOM_MAX=4294967295L
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue