summaryrefslogtreecommitdiff
path: root/vpx/vpx_integer.h
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2018-12-19 13:01:28 -0800
committerJames Zern <jzern@google.com>2018-12-19 13:01:28 -0800
commit413763fe18334fe23cdadf003dd3f4c7386ee97f (patch)
tree40fcbe0a5bfa2d69530b9409cf39494153e9a232 /vpx/vpx_integer.h
parent26b9d085911ff5e83406d1f464dfc562708eaad5 (diff)
downloadlibvpx-413763fe18334fe23cdadf003dd3f4c7386ee97f.tar
libvpx-413763fe18334fe23cdadf003dd3f4c7386ee97f.tar.gz
libvpx-413763fe18334fe23cdadf003dd3f4c7386ee97f.tar.bz2
libvpx-413763fe18334fe23cdadf003dd3f4c7386ee97f.zip
vpx_integer.h: drop VS2010 workaround
visual studio 2015 is the current minimum BUG=webm:1573 Change-Id: I22139925c0a322b1da214c38d8f74fadbc34d2de
Diffstat (limited to 'vpx/vpx_integer.h')
-rw-r--r--vpx/vpx_integer.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/vpx/vpx_integer.h b/vpx/vpx_integer.h
index 4e7236fc5..249c78120 100644
--- a/vpx/vpx_integer.h
+++ b/vpx/vpx_integer.h
@@ -51,13 +51,8 @@ typedef size_t uintptr_t;
#include <stdint.h>
-#endif
+#endif // defined(VPX_EMULATE_INTTYPES)
-/* VS2010 defines stdint.h, but not inttypes.h */
-#if defined(_MSC_VER) && _MSC_VER < 1800
-#define PRId64 "I64d"
-#else
#include <inttypes.h>
-#endif
#endif // VPX_VPX_VPX_INTEGER_H_