From 9f1ae76452d237bd486d7399f9f2c46530a5ad86 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Tue, 14 Sep 2010 05:30:23 +0000 Subject: XPath: Fixed MSVC6 compilation git-svn-id: http://pugixml.googlecode.com/svn/trunk@729 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 48aa8e1..dd26d7b 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -7580,8 +7580,8 @@ namespace pugi char_t* ri = result; - for (size_t i = 0; i < count; ++i) - for (const char_t* bi = buffer[i].c_str(); *bi; ++bi) + for (size_t j = 0; j < count; ++j) + for (const char_t* bi = buffer[j].c_str(); *bi; ++bi) *ri++ = *bi; *ri = 0; -- cgit v1.2.3