diff options
| author | Eric Fiselier <eric@efcs.ca> | 2017-04-19 01:23:04 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2017-04-19 01:23:04 +0000 |
| commit | afa7a957bd6ebe0ded8f74accd964b5a9967dc5b (patch) | |
| tree | 648ca1ffee3d7783a4579186e0c8705af908b949 /libcxx/include/ext | |
| parent | 1f231e7cc70bb84275948a1d44fe5f8347112edf (diff) | |
| download | bcm5719-llvm-afa7a957bd6ebe0ded8f74accd964b5a9967dc5b.tar.gz bcm5719-llvm-afa7a957bd6ebe0ded8f74accd964b5a9967dc5b.zip | |
Cleanup remaining _LIBCPP_HAS_NO_<c++11-feature> usages in container headers
llvm-svn: 300643
Diffstat (limited to 'libcxx/include/ext')
| -rw-r--r-- | libcxx/include/ext/hash_map | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/ext/hash_map b/libcxx/include/ext/hash_map index fab36a155ba..66f2b11c059 100644 --- a/libcxx/include/ext/hash_map +++ b/libcxx/include/ext/hash_map @@ -331,7 +331,7 @@ public: __second_constructed(false) {} -#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES +#ifndef _LIBCPP_CXX03_LANG _LIBCPP_INLINE_VISIBILITY __hash_map_node_destructor(__hash_node_destructor<allocator_type>&& __x) : __na_(__x.__na_), @@ -340,7 +340,7 @@ public: { __x.__value_constructed = false; } -#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#else // _LIBCPP_CXX03_LANG _LIBCPP_INLINE_VISIBILITY __hash_map_node_destructor(const __hash_node_destructor<allocator_type>& __x) : __na_(__x.__na_), @@ -349,7 +349,7 @@ public: { const_cast<bool&>(__x.__value_constructed) = false; } -#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +#endif // _LIBCPP_CXX03_LANG _LIBCPP_INLINE_VISIBILITY void operator()(pointer __p) |

