diff options
author | angshu <[email protected]> | 2022-02-10 16:52:10 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:10 +0300 |
commit | ec5e9af48e16d7a6207a7ba74e4d553dcf10acba (patch) | |
tree | c5b741df85c7e932e929578b375d882512961b45 /util/random | |
parent | dc5972f19ddb40b225e93b0fec8e3f8b858c1913 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/random')
-rw-r--r-- | util/random/random.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/random/random.cpp b/util/random/random.cpp index 71f93238568..7d57b59df69 100644 --- a/util/random/random.cpp +++ b/util/random/random.cpp @@ -99,7 +99,7 @@ float RandomNumber<float>() { do { ret = (float)GetRndGen<ui64>()->GenRandReal2(); - } while (ret >= 1); + } while (ret >= 1); return ret; } |