Corrected a sligth error in eoParamParam reading that resulted in making the comma
part of the stored string value
This commit is contained in:
parent
8f740ab884
commit
c7743f88ef
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue