summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-09-14 05:30:23 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-09-14 05:30:23 +0000
commit9f1ae76452d237bd486d7399f9f2c46530a5ad86 (patch)
tree3c851d18bcb75d2a706811023074a42cdb657aad /src
parent521384bd21b6321368b4094677d482698fe5c5a5 (diff)
XPath: Fixed MSVC6 compilation
git-svn-id: http://pugixml.googlecode.com/svn/trunk@729 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src')
-rw-r--r--src/pugixml.cpp4
1 files 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;