From: James Zern Date: Wed, 19 Dec 2018 21:01:28 +0000 (-0800) Subject: vpx_integer.h: drop VS2010 workaround X-Git-Tag: v1.8.0~52^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=413763fe18334fe23cdadf003dd3f4c7386ee97f;p=libvpx vpx_integer.h: drop VS2010 workaround visual studio 2015 is the current minimum BUG=webm:1573 Change-Id: I22139925c0a322b1da214c38d8f74fadbc34d2de --- diff --git a/vpx/vpx_integer.h b/vpx/vpx_integer.h index 4e7236fc5..249c78120 100644 --- a/vpx/vpx_integer.h +++ b/vpx/vpx_integer.h @@ -51,13 +51,8 @@ typedef size_t uintptr_t; #include -#endif +#endif // defined(VPX_EMULATE_INTTYPES) -/* VS2010 defines stdint.h, but not inttypes.h */ -#if defined(_MSC_VER) && _MSC_VER < 1800 -#define PRId64 "I64d" -#else #include -#endif #endif // VPX_VPX_VPX_INTEGER_H_