]> granicus.if.org Git - libvpx/commitdiff
vpx_integer.h: drop VS2010 workaround
authorJames Zern <jzern@google.com>
Wed, 19 Dec 2018 21:01:28 +0000 (13:01 -0800)
committerJames Zern <jzern@google.com>
Wed, 19 Dec 2018 21:01:28 +0000 (13:01 -0800)
visual studio 2015 is the current minimum

BUG=webm:1573

Change-Id: I22139925c0a322b1da214c38d8f74fadbc34d2de

vpx/vpx_integer.h

index 4e7236fc52e9666a2f7ab718eedd3b96d38ac648..249c781200750c37d90827c03661955cffcd91d8 100644 (file)
@@ -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_