Some more small changes for MSVC++ compatibility

This commit is contained in:
evomarc 2001-11-12 14:17:58 +00:00
commit 4ad58c360e
5 changed files with 9 additions and 4 deletions

View file

@ -409,8 +409,8 @@ public:
while ( (pos=t.find_first_not_of(delim)) < t.size())
{
size_t posEnd = t.find_first_of(delim, pos);
std::string u(t,pos);
u.resize(posEnd-pos);
std::string u = t.substr(pos,posEnd);//(t, pos);
/*u.resize(posEnd - pos);*/
second.push_back(u);
t = t.substr(posEnd);
}