浏览代码

Merge pull request #22 from GeertVL/patch-1

_int64 does not exist but __int64 on WIN32
Marco Bambini 8 年之前
父节点
当前提交
dbcedb1ae6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/utils/gravity_utils.h

+ 1 - 1
src/utils/gravity_utils.h

@@ -13,7 +13,7 @@
 #include <stdbool.h>
 #include <stdbool.h>
 
 
 #if defined(_WIN32)
 #if defined(_WIN32)
-typedef unsigned _int64 nanotime_t;
+typedef unsigned __int64 nanotime_t;
 #define DIRREF			HANDLE
 #define DIRREF			HANDLE
 #else
 #else
 #include <dirent.h>
 #include <dirent.h>