Explorar o código

make Int64.toString public

Simon Krajewski %!s(int64=13) %!d(string=hai) anos
pai
achega
50aac5cf1d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 = "";