浏览代码

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 年之前
父节点
当前提交
1f41263efd
共有 6 个文件被更改,包括 6 次插入6 次删除
  1. 1 1
      std/cpp/zip/Compress.hx
  2. 1 1
      std/cpp/zip/Flush.hx
  3. 1 1
      std/cpp/zip/Uncompress.hx
  4. 1 1
      std/neko/zip/Compress.hx
  5. 1 1
      std/neko/zip/Flush.hx
  6. 1 1
      std/neko/zip/Uncompress.hx

+ 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