BAN: Fix LinkedList::pop_back()

This commit is contained in:
2023-09-22 17:20:35 +03:00
parent 9a3286ad57
commit 971eb737c1
+1 -1
View File
@@ -195,7 +195,7 @@ namespace BAN
template<typename T>
void LinkedList<T>::pop_back()
{
return remove(m_last);
remove(iterator(m_last, false));
}
template<typename T>