diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-04-19 01:02:49 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-04-19 01:02:49 +0000 |
commit | 9adebede00db872a957cadd084eb9bcbf0830d40 (patch) | |
tree | e700f2343ce76e135e02f196c0e35d422ef2ab7d /libcxx/test/support/allocators.h | |
parent | dd94972890dc8809a923572d0e057a5a74b37703 (diff) | |
download | bcm5719-llvm-9adebede00db872a957cadd084eb9bcbf0830d40.tar.gz bcm5719-llvm-9adebede00db872a957cadd084eb9bcbf0830d40.zip |
Cleanup _LIBCPP_HAS_NO_<c++11-feature> in support headers and final tests
llvm-svn: 300637
Diffstat (limited to 'libcxx/test/support/allocators.h')
-rw-r--r-- | libcxx/test/support/allocators.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/support/allocators.h b/libcxx/test/support/allocators.h index 4aa467f824a..b1eea8d0b68 100644 --- a/libcxx/test/support/allocators.h +++ b/libcxx/test/support/allocators.h @@ -15,7 +15,7 @@ #include "test_macros.h" -#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES +#if TEST_STD_VER >= 11 template <class T> class A1 @@ -186,6 +186,6 @@ bool operator!=(const A3<T>& x, const A3<U>& y) return !(x == y); } -#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#endif // TEST_STD_VER >= 11 #endif // ALLOCATORS_H |