From 143b682b8e85687741f038ae8eba53b2b63258b2 Mon Sep 17 00:00:00 2001 From: Jan Ciger Date: Fri, 23 Aug 2013 17:41:19 +0200 Subject: [PATCH] Don't redefine MS types These types are not used in Wiiuse and conflict with MSVC 2012, because that defines int_fast16_t as int (among other things). --- src/wiiuse_msvcstdint.h | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/wiiuse_msvcstdint.h b/src/wiiuse_msvcstdint.h index c66fbb8..75784a1 100644 --- a/src/wiiuse_msvcstdint.h +++ b/src/wiiuse_msvcstdint.h @@ -89,27 +89,6 @@ extern "C" { typedef signed __int64 int64_t; typedef unsigned __int64 uint64_t; - -// 7.18.1.2 Minimum-width integer types -typedef int8_t int_least8_t; -typedef int16_t int_least16_t; -typedef int32_t int_least32_t; -typedef int64_t int_least64_t; -typedef uint8_t uint_least8_t; -typedef uint16_t uint_least16_t; -typedef uint32_t uint_least32_t; -typedef uint64_t uint_least64_t; - -// 7.18.1.3 Fastest minimum-width integer types -typedef int8_t int_fast8_t; -typedef int16_t int_fast16_t; -typedef int32_t int_fast32_t; -typedef int64_t int_fast64_t; -typedef uint8_t uint_fast8_t; -typedef uint16_t uint_fast16_t; -typedef uint32_t uint_fast32_t; -typedef uint64_t uint_fast64_t; - // 7.18.1.4 Integer types capable of holding object pointers #ifdef _WIN64 // [ typedef signed __int64 intptr_t;