Fix missing std:: qualifier in __gnu_cxx::hash_map in C++03

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@361075 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/ext/hash_map b/include/ext/hash_map
index eececad..24823c6 100644
--- a/include/ext/hash_map
+++ b/include/ext/hash_map
@@ -339,7 +339,7 @@
         }
 #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)