Explorar o código

fix for Int/UInt

ncannasse %!s(int64=12) %!d(string=hai) anos
pai
achega
def10b7757
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      hxd/IndexBuffer.hx

+ 1 - 1
hxd/IndexBuffer.hx

@@ -14,7 +14,7 @@ private class InnerIterator {
 	public inline function hasNext() {
 		return pos < len;
 	}
-	public inline function next() {
+	public inline function next() : Int {
 		return b[pos++];
 	}
 }