Browse Source

Fix redeclaration warning on opensolaris

Tatsuhiro Tsujikawa 12 năm trước cách đây
mục cha
commit
3616b75e8a
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/GZipFile.h

+ 2 - 2
src/GZipFile.h

@@ -36,10 +36,10 @@
 #ifndef D_GZIP_FILE_H
 #define D_GZIP_FILE_H
 
-#include <zlib.h>
-
 #include "IOFile.h"
 
+#include <zlib.h>
+
 namespace aria2 {
 
 class GZipFile: public IOFile {