Commit 4d6cd41b authored by Tom Finegan's avatar Tom Finegan Committed by Gerrit Code Review
Browse files

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

parents 992500b8 7320fdda
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -48,7 +48,7 @@ typedef size_t uintptr_t; ...@@ -48,7 +48,7 @@ typedef size_t uintptr_t;
#endif #endif
/* VS2010 defines stdint.h, but not inttypes.h */ /* VS2010 defines stdint.h, but not inttypes.h */
#if defined(_MSC_VER) #if defined(_MSC_VER) && _MSC_VER < 1800
#define PRId64 "I64d" #define PRId64 "I64d"
#else #else
#include <inttypes.h> #include <inttypes.h>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment