Changed: Use uint instead of unsigned

This commit is contained in:
kervala 2016-05-25 23:19:46 +02:00
parent f3a87eacf0
commit 54076e9bf1

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;
} }