From 858737fd88b355d47217fe3bcc66f6e8faeede38 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Tue, 11 Oct 2022 17:55:55 +0200 Subject: [PATCH] s/move/forward in brace-init insert --- include/boost/unordered/detail/foa.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 049dfada..b1dd5f87 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1114,7 +1114,7 @@ public: BOOST_FORCEINLINE std::pair insert(init_type&& x) { - return emplace_impl(std::move(x)); + return emplace_impl(std::forward(x)); } template<