diff options
author | Eric Fiselier <eric@efcs.ca> | 2019-05-17 20:59:57 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2019-05-17 20:59:57 +0000 |
commit | 236317d2161ce7d8364d2ba539db5b8f790fa605 (patch) | |
tree | e8706e32445959b15ab23828332a1f689c9a0970 | |
parent | 549ddae58f7caab3f47da4c47f591c322dab9a2d (diff) | |
download | bcm5719-llvm-236317d2161ce7d8364d2ba539db5b8f790fa605.tar.gz bcm5719-llvm-236317d2161ce7d8364d2ba539db5b8f790fa605.zip |
Fix missing std:: qualifier in __gnu_cxx::hash_map in C++03
llvm-svn: 361075
-rw-r--r-- | libcxx/include/ext/hash_map | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/ext/hash_map b/libcxx/include/ext/hash_map index eececadf49e..24823c6bf0c 100644 --- a/libcxx/include/ext/hash_map +++ b/libcxx/include/ext/hash_map @@ -339,7 +339,7 @@ public: } #else // _LIBCPP_CXX03_LANG _LIBCPP_INLINE_VISIBILITY - __hash_map_node_destructor(const __hash_node_destructor<allocator_type>& __x) + __hash_map_node_destructor(const std::__hash_node_destructor<allocator_type>& __x) : __na_(__x.__na_), __first_constructed(__x.__value_constructed), __second_constructed(__x.__value_constructed) |