浏览代码

[js] loose untyped in Std.random

Dan Korostelev 9 年之前
父节点
当前提交
7f932bd9c4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/js/_std/Std.hx

+ 1 - 1
std/js/_std/Std.hx

@@ -55,7 +55,7 @@ import js.Boot;
 	}
 
 	public static function random( x : Int ) : Int {
-		return untyped x <= 0 ? 0 : Math.floor(Math.random()*x);
+		return x <= 0 ? 0 : Math.floor(Math.random()*x);
 	}
 
 	static function __init__() : Void untyped {