mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Signed/unsigned comparison
--HG-- branch : develop
This commit is contained in:
parent
d1d6f6da41
commit
ccb69f8b27
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ bool CCmdArgs::parse(const std::vector<std::string> &argv)
|
||||||
uint argc = argv.size();
|
uint argc = argv.size();
|
||||||
|
|
||||||
// process each argument
|
// process each argument
|
||||||
for (sint i = 1; i < argc; i++)
|
for (uint i = 1; i < argc; i++)
|
||||||
{
|
{
|
||||||
std::string name = argv[i];
|
std::string name = argv[i];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue