Corrected a sligth error in eoParamParam reading that resulted in making the comma

part of the stored string value
This commit is contained in:
evomarc 2002-03-05 05:46:55 +00:00
commit c7743f88ef

View file

@ -412,7 +412,7 @@ public:
std::string u = t.substr(pos,posEnd);//(t, pos);
/*u.resize(posEnd - pos);*/
second.push_back(u);
t = t.substr(posEnd);
t = t.substr(posEnd+1);
}
}
};