Skip to content
Snippets Groups Projects
Commit c4aeff94 authored by John Koleszar's avatar John Koleszar Committed by Gerrit Code Review
Browse files

Merge "vpx_integer.h: fix incorrect type emulation"

parents 20573f06 a4e410a3
No related branches found
No related tags found
No related merge requests found
......@@ -29,16 +29,8 @@ typedef signed __int64 int64_t;
typedef unsigned __int64 uint64_t;
#endif
#ifdef HAVE_ARMV6
typedef unsigned int int_fast16_t;
#else
typedef signed short int_fast16_t;
#endif
typedef signed char int_fast8_t;
typedef unsigned char uint_fast8_t;
#ifndef _UINTPTR_T_DEFINED
typedef unsigned int uintptr_t;
typedef size_t uintptr_t;
#endif
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment