Fix build
This commit is contained in:
parent
b3c1902a70
commit
fb62e433fb
1 changed files with 23 additions and 20 deletions
|
@ -8,27 +8,7 @@
|
||||||
#include <hash_map>
|
#include <hash_map>
|
||||||
#include <hash_set>
|
#include <hash_set>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
typedef __int8 int8;
|
|
||||||
typedef __int16 int16;
|
|
||||||
typedef __int32 int32;
|
|
||||||
typedef __int64 int64;
|
|
||||||
|
|
||||||
typedef unsigned __int8 uint8;
|
|
||||||
typedef unsigned __int16 uint16;
|
|
||||||
typedef unsigned __int32 uint32;
|
|
||||||
typedef unsigned __int64 uint64;
|
|
||||||
#else
|
|
||||||
typedef int8_t int8;
|
|
||||||
typedef int16_t int16;
|
|
||||||
typedef int32_t int32;
|
|
||||||
typedef int64_t int64;
|
|
||||||
|
|
||||||
typedef uint8_t uint8;
|
|
||||||
typedef uint16_t uint16;
|
|
||||||
typedef uint32_t uint32;
|
|
||||||
typedef uint64_t uint64;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVING_HASH
|
#ifdef HAVING_HASH
|
||||||
|
|
||||||
|
@ -60,6 +40,29 @@ namespace __gnu_cxx {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
typedef __int8 int8;
|
||||||
|
typedef __int16 int16;
|
||||||
|
typedef __int32 int32;
|
||||||
|
typedef __int64 int64;
|
||||||
|
|
||||||
|
typedef unsigned __int8 uint8;
|
||||||
|
typedef unsigned __int16 uint16;
|
||||||
|
typedef unsigned __int32 uint32;
|
||||||
|
typedef unsigned __int64 uint64;
|
||||||
|
#else
|
||||||
|
typedef int8_t int8;
|
||||||
|
typedef int16_t int16;
|
||||||
|
typedef int32_t int32;
|
||||||
|
typedef int64_t int64;
|
||||||
|
|
||||||
|
typedef uint8_t uint8;
|
||||||
|
typedef uint16_t uint16;
|
||||||
|
typedef uint32_t uint32;
|
||||||
|
typedef uint64_t uint64;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define HMAP
|
#define HMAP
|
||||||
|
|
Loading…
Reference in a new issue