[libcxx-commits] [libcxx] r361075 - Fix missing std:: qualifier in __gnu_cxx::hash_map in C++03

Eric Fiselier via libcxx-commits libcxx-commits at lists.llvm.org
Fri May 17 13:59:57 PDT 2019


Author: ericwf
Date: Fri May 17 13:59:57 2019
New Revision: 361075

URL: http://llvm.org/viewvc/llvm-project?rev=361075&view=rev
Log:
Fix missing std:: qualifier in __gnu_cxx::hash_map in C++03

Modified:
    libcxx/trunk/include/ext/hash_map

Modified: libcxx/trunk/include/ext/hash_map
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/ext/hash_map?rev=361075&r1=361074&r2=361075&view=diff
==============================================================================
--- libcxx/trunk/include/ext/hash_map (original)
+++ libcxx/trunk/include/ext/hash_map Fri May 17 13:59:57 2019
@@ -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)




More information about the libcxx-commits mailing list