XPath: Fixed MSVC6 compilation

git-svn-id: http://pugixml.googlecode.com/svn/trunk@729 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-09-14 05:30:23 +00:00
parent 521384bd21
commit 9f1ae76452

View File

@ -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;