Browse Source

procrastinate about weird `haxe_ver` checks

Hey future Simon,
sorry about this but I can't be arsed to think about this right now.
Regards
Past Simon
Simon Krajewski 8 years ago
parent
commit
1f41263efd

+ 1 - 1
std/cpp/zip/Compress.hx

@@ -21,6 +21,6 @@
  */
  package cpp.zip;
 
-#if (haxe_ver < 3.4)
+#if (haxe_ver < 4.0)
 typedef Compress = haxe.zip.Compress;
 #end

+ 1 - 1
std/cpp/zip/Flush.hx

@@ -21,6 +21,6 @@
  */
  package cpp.zip;
 
-#if (haxe_ver < 3.4)
+#if (haxe_ver < 4.0)
 typedef Flush = haxe.zip.FlushMode;
 #end

+ 1 - 1
std/cpp/zip/Uncompress.hx

@@ -21,6 +21,6 @@
  */
  package cpp.zip;
 
-#if (haxe_ver < 3.4)
+#if (haxe_ver < 4.0)
 typedef Uncompress = haxe.zip.Uncompress;
 #end

+ 1 - 1
std/neko/zip/Compress.hx

@@ -21,6 +21,6 @@
  */
  package neko.zip;
 
-#if (haxe_ver < 3.4)
+#if (haxe_ver < 4.0)
 typedef Compress = haxe.zip.Compress;
 #end

+ 1 - 1
std/neko/zip/Flush.hx

@@ -21,6 +21,6 @@
  */
  package neko.zip;
 
-#if (haxe_ver < 3.4)
+#if (haxe_ver < 4.0)
 typedef Flush = haxe.zip.FlushMode;
 #end

+ 1 - 1
std/neko/zip/Uncompress.hx

@@ -21,6 +21,6 @@
  */
  package neko.zip;
 
-#if (haxe_ver < 3.4)
+#if (haxe_ver < 4.0)
 typedef Uncompress = haxe.zip.Uncompress;
 #end