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-05-22 10:47:07 +02:00
2017-12-10 23:33:41 +01:00
2014-08-18 14:58:08 +01:00
2017-12-20 12:50:46 +01:00
2014-05-28 15:50:13 +02:00
Description
STL-like containers from Boost
18 MiB
Languages
C++ 92.1%
C 7.7%
CMake 0.2%