浏览代码

make Int64.toString public

Simon Krajewski 13 年之前
父节点
当前提交
50aac5cf1d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/haxe/Int64.hx

+ 1 - 1
std/haxe/Int64.hx

@@ -35,7 +35,7 @@ class Int64 {
 		this.low = low;
 	}
 
-	function toString() {
+	public function toString() {
 		if (high.isZero() && low.isZero())
 			return "0";
 		var str = "";