From: Vadim Zeitlin Date: Mon, 10 Nov 2008 16:44:39 +0000 (+0000) Subject: fix yet another VC6 compilation error because of loop variable reuse X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eb7b690a4f6268d569d6cd52c51e13982aca094e fix yet another VC6 compilation error because of loop variable reuse git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/ifacecheck/src/xmlparser.cpp b/utils/ifacecheck/src/xmlparser.cpp index 04a583186b..b5c752d48f 100644 --- a/utils/ifacecheck/src/xmlparser.cpp +++ b/utils/ifacecheck/src/xmlparser.cpp @@ -635,11 +635,13 @@ void wxXmlInterface::Dump(const wxString& filename) // dump the classes in alphabetical order wxSortedClassArray sorted(CompareWxClassObjects); sorted.Alloc(m_classes.GetCount()); - for (unsigned int i=0; iDump(apiout); } @@ -1086,7 +1088,8 @@ bool wxXmlGccInterface::Parse(const wxString& filename) } // resolve header names - for (unsigned int i=0; i