]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for VC6
authorChris Elliott <biol75@york.ac.uk>
Sun, 16 Sep 2007 17:47:03 +0000 (17:47 +0000)
committerChris Elliott <biol75@york.ac.uk>
Sun, 16 Sep 2007 17:47:03 +0000 (17:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48725 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/vector.h

index 3d983aab196d8fa256f5439324bcfb69b90e94f3..207c0dd9cffd3a79c1487ad69194df9725608b74 100644 (file)
@@ -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;