Browse Source

Restoring authorship annotation for <angshu@yandex-team.ru>. Commit 1 of 2.

angshu 3 years ago
parent
commit
ec5e9af48e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      util/random/random.cpp

+ 1 - 1
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;
 }