Changed: Use uint instead of unsigned

--HG--
branch : develop
This commit is contained in:
kervala 2016-05-25 23:19:46 +02:00
parent efe00fa8bf
commit ee2938e3cb

View file

@ -122,7 +122,7 @@ public:
{ {
if (_Ids.empty()) return std::string(""); if (_Ids.empty()) return std::string("");
std::string str=_Ids[0]; std::string str=_Ids[0];
for (unsigned i=1; i<_Ids.size(); i++) for (uint i=1; i<_Ids.size(); i++)
str +=std::string(":")+ _Ids[i]; str +=std::string(":")+ _Ids[i];
return str; return str;
} }