This commit is contained in:
Irlan 2019-04-10 08:03:06 -03:00
parent 8352e29847
commit 8950df2ef6

View File

@ -93,6 +93,9 @@ public:
{ {
B3_ASSERT(m_count > 0); B3_ASSERT(m_count > 0);
--m_count; --m_count;
T* e = m_elements + m_count;
e->~T();
} }
const T& Back() const const T& Back() const