fixed bug in rvalue ref overload of sequenced_index::splice(position,x,first,last)

This commit is contained in:
joaquintides 2021-08-08 13:21:20 +02:00
parent 0f52598544
commit 070f7209f0

View File

@ -567,7 +567,7 @@ public:
BOOST_DEDUCED_TYPENAME Index::iterator first,
BOOST_DEDUCED_TYPENAME Index::iterator last)
{
splice(position,static_cast<Index&>(x),i);
splice(position,static_cast<Index&>(x),first,last);
}
void remove(value_param_type value)