Browse Source

fix for Int/UInt

ncannasse 12 năm trước cách đây
mục cha
commit
def10b7757
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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++];
 	}
 }