mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: Use uint instead of unsigned
This commit is contained in:
parent
7b901a8888
commit
8a720cd86c
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ public:
|
|||
{
|
||||
if (_Ids.empty()) return std::string("");
|
||||
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];
|
||||
return str;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue