Change basic_types.h for fixing build failure

BUG=libyuv:630

TBR=harryjin@google.com
TEST=android build locally tested.

Review URL: https://codereview.chromium.org/2225763003 .

Review URL: https://codereview.chromium.org/2269793002 .
This commit is contained in:
Frank Barchard 2016-08-22 16:16:49 -07:00
parent 74491ba0c5
commit 920151f2b5
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 1609
Version: 1611
License: BSD
License File: LICENSE

View File

@ -13,7 +13,7 @@
#include <stddef.h> // for NULL, size_t
#if defined(__ANDROID__) || (defined(_MSC_VER) && (_MSC_VER < 1600))
#if defined(_MSC_VER) && (_MSC_VER < 1600)
#include <sys/types.h> // for uintptr_t on x86
#else
#include <stdint.h> // for uintptr_t

View File

@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1609
#define LIBYUV_VERSION 1611
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT