From 1c107fce67bfd10397d704b63b84751b654627cc Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Tue, 9 Aug 2022 07:39:47 +0300 Subject: [PATCH] Use xvalue ref in BackInsertFunctor for the possible move. Signed-off-by: Viktor Govako --- base/stl_helpers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/stl_helpers.hpp b/base/stl_helpers.hpp index f2efacded5..da658080e0 100644 --- a/base/stl_helpers.hpp +++ b/base/stl_helpers.hpp @@ -254,7 +254,7 @@ class BackInsertFunctor { public: explicit BackInsertFunctor(Container & container) : m_Container(container) {} - void operator()(typename Container::value_type const & t) const { m_Container.push_back(t); } + template void operator()(T && t) const { m_Container.push_back(std::forward(t)); } private: Container & m_Container;