From afec7339b830461042e5af9cb9561563cf3ba28d Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 21 Jan 2019 02:49:43 +0100 Subject: headers: Don't redefine uint*_t for newer versions of MSVC --- include/plist/plist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/plist/plist.h b/include/plist/plist.h index 707460e..263efa8 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h @@ -29,7 +29,7 @@ extern "C" { #endif -#ifdef _MSC_VER +#if _MSC_VER && _MSC_VER < 1700 typedef __int8 int8_t; typedef __int16 int16_t; typedef __int32 int32_t; -- cgit v1.1-32-gdbae