소스 검색

fix for Int/UInt

ncannasse 12 년 전
부모
커밋
def10b7757
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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++];
 	}
 }