Fix for VC++ 6 error

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51147 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2008-01-10 12:10:03 +00:00
parent 634bb98a30
commit 82b6efd2c2

View File

@ -54,7 +54,7 @@ public:
// call destructors of stored objects:
for ( size_type i = 0; i < m_size; i++ )
{
m_values[i].~value_type();
m_values[i].~T();
}
free(m_values);