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-11-07 00:51:46 +01:00
2017-11-07 00:51:46 +01:00
2017-11-07 00:51:46 +01:00
2017-12-10 23:33:41 +01:00
2017-11-07 00:51:46 +01:00
2017-11-07 00:51:46 +01:00
2017-11-07 00:51:46 +01:00
2017-12-10 23:33:41 +01:00
2017-11-07 00:51:46 +01:00
2016-12-20 11:03:57 +09:00
2017-11-07 00:51:46 +01:00
2017-11-07 00:51:46 +01:00
2017-12-10 23:33:41 +01:00
2015-09-07 19:16:46 +02:00
2017-11-07 00:51:46 +01:00
2017-12-10 23:33:41 +01:00
2017-12-20 12:50:46 +01:00
2017-12-10 23:33:41 +01:00
2017-11-07 00:51:46 +01:00
2017-11-07 00:51:46 +01:00
2017-12-10 23:33:41 +01:00
2017-10-01 10:45:13 +02:00
2016-11-20 18:17:08 +01:00
2017-11-07 00:51:46 +01:00
2017-12-10 23:33:41 +01:00