diff options
author | Sam Hasinoff <hasinoff@google.com> | 2014-04-24 18:19:03 -0700 |
---|---|---|
committer | Sam Hasinoff <hasinoff@google.com> | 2014-04-24 18:19:03 -0700 |
commit | 53c867b08bb6d906259292725ab5152b468586cb (patch) | |
tree | 12c451fcdbf101329385ada50bdc5c631b2c5a7d /9/sources/cxx-stl/llvm-libc++ | |
parent | 94b36f0a17b21a94d302dca75477007d2cede73a (diff) | |
download | prebuilts_ndk-53c867b08bb6d906259292725ab5152b468586cb.zip prebuilts_ndk-53c867b08bb6d906259292725ab5152b468586cb.tar.gz prebuilts_ndk-53c867b08bb6d906259292725ab5152b468586cb.tar.bz2 |
Fix typo in __gxx__cxx_auto_type
Change-Id: I655f7c1eb47160689808074dd1263a8f59db0f96
Diffstat (limited to '9/sources/cxx-stl/llvm-libc++')
-rw-r--r-- | 9/sources/cxx-stl/llvm-libc++/libcxx/include/__config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/9/sources/cxx-stl/llvm-libc++/libcxx/include/__config b/9/sources/cxx-stl/llvm-libc++/libcxx/include/__config index 9267f65..31cbcd4 100644 --- a/9/sources/cxx-stl/llvm-libc++/libcxx/include/__config +++ b/9/sources/cxx-stl/llvm-libc++/libcxx/include/__config @@ -429,7 +429,7 @@ using namespace _LIBCPP_NAMESPACE __attribute__((__strong__)); #define __gxx__cxx_alignas 0 // Not sure, doesn't matter. #define __gxx__cxx_atomic 0 // In c11-atomic branch targeted for GCC 4.9. Also see usages in 20+ places #define __gxx__cxx_attributes 0 // Not sure. Also see usage in libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_polymorphic.pass.cpp -#define __gxx__cxx_auto_type !deinfed(_LIBCPP_HAS_NO_AUTO_TYPE) +#define __gxx__cxx_auto_type !defined(_LIBCPP_HAS_NO_AUTO_TYPE) #define __gxx__cxx_constexpr !defined(_LIBCPP_HAS_NO_CONSTEXPR) #define __gxx__cxx_decltype !defined(_LIBCPP_HAS_NO_DECLTYPE) #define __gxx__cxx_defaulted_functions !defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) // libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_trivially_move_constructible.pass.cpp |