fix for VC6 sorry
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
9c9b12747f
commit
1cffe60012
@ -170,8 +170,8 @@ public:
|
||||
*(i - count) = *i;
|
||||
|
||||
// erase items behind the new end of m_values:
|
||||
for ( /* iterator */ i = end() - count; i < end(); ++i )
|
||||
*i = value_type();
|
||||
for ( iterator j = end() - count; j < end(); ++j )
|
||||
*j = value_type();
|
||||
|
||||
m_size -= count;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user