Răsfoiți Sursa

make Int64.toString public

Simon Krajewski 13 ani în urmă
părinte
comite
50aac5cf1d
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      std/haxe/Int64.hx

+ 1 - 1
std/haxe/Int64.hx

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