forked from organicmaps/organicmaps-tmp
Use xvalue ref in BackInsertFunctor for the possible move.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
f8efdb53f6
commit
1c107fce67
1 changed files with 1 additions and 1 deletions
|
@ -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 <class T> void operator()(T && t) const { m_Container.push_back(std::forward<T>(t)); }
|
||||
|
||||
private:
|
||||
Container & m_Container;
|
||||
|
|
Loading…
Add table
Reference in a new issue