shithub: libvpx

Download patch

ref: 4d6cd41b711a4b45a72a8eb33c49a458c180dfdb
parent: 992500b8cb5144a6e0505a33eb9a312d4b78ab00
parent: 7320fdda38e684f35b1ee5cc981bb5dc734b8a2d
author: Tom Finegan <tomfinegan@google.com>
date: Mon Feb 10 11:42:34 EST 2014

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

--- 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>