Browse Source

flash.Vector requires Flash 10+.

Bruno Garcia 12 years ago
parent
commit
da42ccb84b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/haxe/Vector.hx

+ 2 - 2
std/haxe/Vector.hx

@@ -21,7 +21,7 @@
  */
  */
 package haxe;
 package haxe;
 	
 	
-private typedef VectorData<T> = #if flash9
+private typedef VectorData<T> = #if flash10
 	flash.Vector<T>
 	flash.Vector<T>
 #elseif neko
 #elseif neko
 	neko.NativeArray<T>
 	neko.NativeArray<T>
@@ -128,4 +128,4 @@ abstract Vector(VectorData<T>)<T> {
 			vec.set(i, array[i]);
 			vec.set(i, array[i]);
 		return vec;
 		return vec;
 	}
 	}
-}
+}