- Fix MSVC 2013+ build. Patch by Victor Matovykh.
CORE-11575 #resolve

svn path=/trunk/; revision=71998
This commit is contained in:
Thomas Faber 2016-07-25 19:28:40 +00:00
parent 4d367e4fd3
commit 42abc25acc

View file

@ -13,20 +13,7 @@
#include <assert.h>
#include <stdlib.h>
#include <limits.h>
#ifndef _MSC_VER
#include <stdint.h>
#else
typedef __int8 int8_t;
typedef __int16 int16_t;
typedef __int32 int32_t;
typedef __int64 int64_t;
typedef unsigned __int8 uint8_t;
typedef unsigned __int16 uint16_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
#endif
/* Function attributes for GCC */
#if !defined(_MSC_VER) && !defined(__fastcall)