vpx_integer: Use inttypes.h in MSVC (2013 and later).

Change-Id: I2c47f0ab13de82de8833c3f134e5f3c74394374f
This commit is contained in:
Tom Finegan 2014-02-10 15:30:43 -08:00
parent c761bd78fa
commit 7320fdda38

View File

@ -48,7 +48,7 @@ typedef size_t uintptr_t;
#endif
/* VS2010 defines stdint.h, but not inttypes.h */
#if defined(_MSC_VER)
#if defined(_MSC_VER) && _MSC_VER < 1800
#define PRId64 "I64d"
#else
#include <inttypes.h>