瀏覽代碼

fixed issue #690

Nicolas Cannasse 13 年之前
父節點
當前提交
8ff3d5730d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/js/_std/IntHash.hx

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

@@ -55,7 +55,7 @@
 
 	public function keys() : Iterator<Int> {
 		var a = new Array();
-		untyped __js__("for( x in this.h ) a.push(x)");
+		untyped __js__("for( x in this.h ) a.push(x|0)");
 		return a.iterator();
 	}