commit | 77455f85ab46bed6dc5f7246b474ede44ae9ede2 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Wed Jul 01 15:32:57 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Jul 01 15:32:58 2015 +0000 |
tree | 6fe1889e2d9156a79802b20e510a599090db8b8a | |
parent | 86061f39c2c5f5a5ee91b349d1c8cb7bf04003a3 [diff] | |
parent | a05bee544a2966a06830bf4432187fab881bfe49 [diff] |
Merge "Fixed uchar.h for clang3.6"
diff --git a/libc/include/uchar.h b/libc/include/uchar.h index 0ec9d2e..a5e72ea 100644 --- a/libc/include/uchar.h +++ b/libc/include/uchar.h
@@ -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