Nicolas Cannasse 13 vuotta sitten
vanhempi
commit
c5f54964be
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      std/haxe/FastList.hx

+ 2 - 2
std/haxe/FastList.hx

@@ -47,10 +47,10 @@ private class FastListIterator<T> extends cpp.FastIterator<T>#if !haxe3 , implem
 /**
 	A linked-list of elements. A different class is created for each container used in platforms where it matters
 **/
-#if haxe3 && (flash9 || cpp)
+#if (haxe3 && (flash9 || cpp))
 @:generic
 #end
-class FastList<T> #if !haxe3 && (flash9 || cpp) implements haxe.rtti.Generic #end {
+class FastList<T> #if (!haxe3 && (flash9 || cpp)) implements haxe.rtti.Generic #end {
 
 	public var head : FastCell<T>;