Changed: Use uint instead of unsigned

--HG--
branch : develop
feature/pipeline-tools
kervala 9 years ago
parent efe00fa8bf
commit ee2938e3cb

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

Loading…
Cancel
Save