diff --git a/BAN/include/BAN/LinkedList.h b/BAN/include/BAN/LinkedList.h index a7cca31fe6..319a685c7d 100644 --- a/BAN/include/BAN/LinkedList.h +++ b/BAN/include/BAN/LinkedList.h @@ -195,7 +195,7 @@ namespace BAN template void LinkedList::pop_back() { - return remove(m_last); + remove(iterator(m_last, false)); } template