Merge pull request #339 from cgohlke/patch-1

BUG: add typedef uint64_t for msvc
This commit is contained in:
Alex Clark ☺ 2013-09-27 15:12:58 -07:00
commit b3cfef3362

View File

@ -14,6 +14,7 @@
#ifdef _MSC_VER #ifdef _MSC_VER
typedef unsigned __int32 uint32_t; typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
#else #else
#include <stdint.h> #include <stdint.h>
#endif #endif