BAN: Fix LinkedList::pop_back()

This commit is contained in:
Bananymous 2023-09-20 20:22:02 +03:00
parent 9a3286ad57
commit 971eb737c1
1 changed files with 1 additions and 1 deletions

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>