fixed wrong signature in splice memfun

This commit is contained in:
joaquintides 2021-08-10 19:44:33 +02:00
parent 41c9f2a0e2
commit fee9c9d03c

View File

@ -620,7 +620,8 @@ public:
BOOST_MULTI_INDEX_ENABLE_IF_MERGEABLE(random_access_index,Index,void)
splice(
iterator position,BOOST_RV_REF(Index) x,
iterator first,iterator last)
BOOST_DEDUCED_TYPENAME Index::iterator first,
BOOST_DEDUCED_TYPENAME Index::iterator last)
{
splice(position,static_cast<Index&>(x),first,last);
}