]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Add missing std:: qualification of a forward call
authorFrançois Dumont <fdumont@gcc.gnu.org>
Tue, 11 Feb 2020 18:09:48 +0000 (19:09 +0100)
committerFrançois Dumont <fdumont@gcc.gnu.org>
Wed, 12 Feb 2020 21:09:41 +0000 (22:09 +0100)
* include/bits/hashtable.h
(_Hashtable<>(_Hashtable&&, std::allocator_type&)): Add
missing std namespace qualification to forward call.

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/hashtable.h

index d3c704ad0e89206b1f7237021b9c6a5a72afc840..b2f66e037c4b742213842f22df1071235f0d66ce 100644 (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
index 9e721aad8ccc2327076c7c384e465d79f4a2a977..b00319a668b4d0c7853e2f3efd1c95eb310e83ad 100644 (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();
        }
     }