BAN: Fix LinkedList::pop_back()

This commit is contained in:
Bananymous 2023-09-20 20:22:02 +03:00
parent 83b165ebb0
commit 2a469241b2
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>