Files
boost_container/include/boost/container
QUvalda ed6c8bd87d Fix splice for slist
The call of the splice method with iterators leads to an infinite loop inside common_slist_algorithms::get_previous_node

slist<int> lst1 = { 0, 1, 2, 3 };
slist<int> lst2;
lst2.splice(lst2.begin(), lst1, lst1.begin());

expected:
lst1 == { 1, 2, 3 }
lst2 == { 0 }
2017-12-20 12:50:46 +01:00
..
2017-12-10 23:33:41 +01:00
2017-12-10 23:33:41 +01:00
2017-12-10 23:33:41 +01:00
2017-12-20 12:50:46 +01:00