added missing BOOST_FORCEINLINE

This commit is contained in:
joaquintides
2022-10-25 19:53:18 +02:00
parent d12ed06c3d
commit fb315252b3

View File

@ -232,7 +232,7 @@ namespace boost {
return table_.insert(std::forward<Ty>(value));
}
std::pair<iterator, bool> insert(init_type&& value)
BOOST_FORCEINLINE std::pair<iterator, bool> insert(init_type&& value)
{
return table_.insert(std::move(value));
}