소스 검색

added @:generic to cpp/FastIterator.hx

Simon Krajewski 13 년 전
부모
커밋
c7286f20bc
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      std/cpp/FastIterator.hx

+ 4 - 1
std/cpp/FastIterator.hx

@@ -1,6 +1,9 @@
 package cpp;
 
-extern class FastIterator<T> implements haxe.rtti.Generic
+#if haxe3
+@:generic
+#end
+extern class FastIterator<T> #if !haxe3 implements haxe.rtti.Generic #end
 {
 	public function hasNext():Bool;
 	public function next():T;