From c2eab91ac22360e2cda433a99190de1ae021e326 Mon Sep 17 00:00:00 2001 From: carlo-bramini Date: Sun, 5 Nov 2017 18:20:51 +0100 Subject: [PATCH] Remove VisualC++ types. --- src/utils/fluidsynth_priv.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/utils/fluidsynth_priv.h b/src/utils/fluidsynth_priv.h index fffa776f..1f2c0623 100644 --- a/src/utils/fluidsynth_priv.h +++ b/src/utils/fluidsynth_priv.h @@ -116,18 +116,6 @@ #if HAVE_STDINT_H #include -#elif defined _MSC_VER - -/* Emulate with standard MSVC types */ -typedef signed __int8 int8_t; -typedef unsigned __int8 uint8_t; -typedef signed __int16 int16_t; -typedef unsigned __int16 uint16_t; -typedef signed __int32 int32_t; -typedef unsigned __int32 uint32_t; -typedef signed __int64 int64_t; -typedef unsigned __int64 uint64_t; - #else /* Assume GLIB types */