Merge "Skip inttypes.h on Darwin"

This commit is contained in:
Tom Finegan 2016-05-09 15:07:37 +00:00 committed by Gerrit Code Review
commit bd2e7fa1c8

View File

@ -68,7 +68,12 @@ typedef size_t uintptr_t;
#if defined(_MSC_VER) && _MSC_VER < 1800 #if defined(_MSC_VER) && _MSC_VER < 1800
#define PRId64 "I64d" #define PRId64 "I64d"
#else #else
#if defined(__APPLE__)
// When building dynamic frameworks with Swift compatibility, module maps
// do not allow us to include the system's inttypes.h.
#else
#include <inttypes.h> #include <inttypes.h>
#endif #endif
#endif
#endif // VPX_VPX_INTEGER_H_ #endif // VPX_VPX_INTEGER_H_