From c7743f88eff30bb77b934bebd88f6692d6afae71 Mon Sep 17 00:00:00 2001 From: evomarc Date: Tue, 5 Mar 2002 05:46:55 +0000 Subject: [PATCH] Corrected a sligth error in eoParamParam reading that resulted in making the comma part of the stored string value --- eo/src/utils/eoParam.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/utils/eoParam.h b/eo/src/utils/eoParam.h index 4ca81fe3..ce054a31 100644 --- a/eo/src/utils/eoParam.h +++ b/eo/src/utils/eoParam.h @@ -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); } } };