shithub: libvpx

Download patch

ref: 7320fdda38e684f35b1ee5cc981bb5dc734b8a2d
parent: c761bd78fa34d8f038f69b1daf8fd5f03b8c3eaa
author: Tom Finegan <[email protected]>
date: Mon Feb 10 10:30:43 EST 2014

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

Change-Id: I2c47f0ab13de82de8833c3f134e5f3c74394374f

--- a/vpx/vpx_integer.h
+++ b/vpx/vpx_integer.h
@@ -48,7 +48,7 @@
 #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>