X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f9bf06acdaa4917df9edf4bdceffc8c8639cb362..90254df808aa4261e414ebacbb1417f87fad3bc9:/include/wx/vector.h diff --git a/include/wx/vector.h b/include/wx/vector.h index 3d983aab19..8cb76a7ee6 100644 --- a/include/wx/vector.h +++ b/include/wx/vector.h @@ -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;