Browse Source

FastIterator implements Generic in cpp

Hugh Sanderson 14 years ago
parent
commit
4e94ba800a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/cpp/FastIterator.hx

+ 1 - 1
std/cpp/FastIterator.hx

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