libstdc++: Add missing std:: qualification of a forward call

* include/bits/hashtable.h
	(_Hashtable<>(_Hashtable&&, std::allocator_type&)): Add
	missing std namespace qualification to forward call.
This commit is contained in:
François Dumont 2020-02-11 19:09:48 +01:00
parent 0a0de9636d
commit b32a3f3243
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2020-02-12 François Dumont <fdumont@gcc.gnu.org>
* include/bits/hashtable.h
(_Hashtable<>(_Hashtable&&, std::allocator_type&)): Add
missing std namespace qualification to forward call.
2020-02-09 Jonathan Wakely <jwakely@redhat.com>
* testsuite/20_util/function_objects/range.cmp/equal_to.cc: Fix

View File

@ -1371,7 +1371,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
using _Fwd_Ht = typename
conditional<__move_if_noexcept_cond<value_type>::value,
const _Hashtable&, _Hashtable&&>::type;
_M_assign(forward<_Fwd_Ht>(__ht), __alloc_gen);
_M_assign(std::forward<_Fwd_Ht>(__ht), __alloc_gen);
__ht.clear();
}
}