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 | 7d165563a0eef351b9b0f1bc159c1450a6b29f97 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb | |
parent | ec5e9af48e16d7a6207a7ba74e4d553dcf10acba (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
-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 7d57b59df69..71f93238568 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; } |