diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2014-02-21 18:07:52 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2014-02-21 18:07:52 +0000 |
| commit | 0e23e04f9ad0660510cff48e8eaf8b3b5284a3ec (patch) | |
| tree | 9eccf2f6bc0ff352489110c61e9f604a9d3566d0 | |
| parent | 955e37a9570942b80e65779743f13ee161193ce5 (diff) | |
| download | bcm5719-llvm-0e23e04f9ad0660510cff48e8eaf8b3b5284a3ec.tar.gz bcm5719-llvm-0e23e04f9ad0660510cff48e8eaf8b3b5284a3ec.zip | |
Fix historical #ifdef. Use __cplusplus instead of __GXX_EXPERIMENTAL_CXX0X__ when compiling with clang. No functionality change.
llvm-svn: 201864
| -rw-r--r-- | libcxx/include/__config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__config b/libcxx/include/__config index 21f7dced021..99de86d899e 100644 --- a/libcxx/include/__config +++ b/libcxx/include/__config @@ -215,7 +215,7 @@ #define _LIBCPP_HAS_NO_TEMPLATE_ALIASES #endif -#ifndef __GXX_EXPERIMENTAL_CXX0X__ +#ifndef __cplusplus >= 201103L #ifdef __linux__ #define _LIBCPP_HAS_NO_UNICODE_CHARS #else |

