From: Chris Elliott Date: Sun, 16 Sep 2007 17:47:03 +0000 (+0000) Subject: fix for VC6 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9c9b12747f291200888bb7bf9bbdb84f8773279f fix for VC6 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48725 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/vector.h b/include/wx/vector.h index 3d983aab19..207c0dd9cf 100644 --- a/include/wx/vector.h +++ b/include/wx/vector.h @@ -170,7 +170,7 @@ public: *(i - count) = *i; // erase items behind the new end of m_values: - for ( iterator i = end() - count; i < end(); ++i ) + for ( /* iterator */ i = end() - count; i < end(); ++i ) *i = value_type(); m_size -= count;