From 9c9b12747f291200888bb7bf9bbdb84f8773279f Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Sun, 16 Sep 2007 17:47:03 +0000 Subject: [PATCH] fix for VC6 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48725 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.0