Merge "Fixed uchar.h for clang3.6"

This commit is contained in:
Elliott Hughes 2015-07-01 15:32:57 +00:00 committed by Gerrit Code Review
commit 77455f85ab

View file

@ -34,7 +34,7 @@
__BEGIN_DECLS
#if defined(__GNUC__) && __GNUC__ >= 5 && !defined(__cplusplus)
#if __STDC_VERSION__ >= 201112L && !defined(__cplusplus)
typedef __CHAR16_TYPE__ char16_t;
typedef __CHAR32_TYPE__ char32_t;
#endif