diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2014-09-05 20:28:44 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2014-09-05 20:28:44 +0000 |
commit | afe6794bc2ee35880e970e7e9fcde6c2ad72b51b (patch) | |
tree | 650d5a150f0d3ff90f77bae7c8c9306e841c19b2 /libcxx/src/memory.cpp | |
parent | bb1c918ec85f24457a4aeb47a08683df34063916 (diff) | |
download | bcm5719-llvm-afe6794bc2ee35880e970e7e9fcde6c2ad72b51b.tar.gz bcm5719-llvm-afe6794bc2ee35880e970e7e9fcde6c2ad72b51b.zip |
Address some post-commit review comments on r217261
llvm-svn: 217276
Diffstat (limited to 'libcxx/src/memory.cpp')
-rw-r--r-- | libcxx/src/memory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/memory.cpp b/libcxx/src/memory.cpp index 31e823cf419..c56d031adfb 100644 --- a/libcxx/src/memory.cpp +++ b/libcxx/src/memory.cpp @@ -121,7 +121,7 @@ __shared_weak_count::__get_deleter(const type_info&) const _NOEXCEPT #endif // _LIBCPP_NO_RTTI -#if __has_feature(cxx_atomic) && !_LIBCPP_HAS_NO_THREADS +#if __has_feature(cxx_atomic) && !defined(_LIBCPP_HAS_NO_THREADS) static const std::size_t __sp_mut_count = 16; static pthread_mutex_t mut_back_imp[__sp_mut_count] = |