Commit 4330777d authored by Marius Muja's avatar Marius Muja

Fixing uint32_t typedef for MSVC

parent 2c5de6dd
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
#include <cstdlib> #include <cstdlib>
#include <string.h> #include <string.h>
#ifdef _MSC_VER #ifdef _MSC_VER
typedef unsigned uint32_t; typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t; typedef unsigned __int64 uint64_t;
#else #else
#include <stdint.h> #include <stdint.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment