Fixed: Missing ++
--HG-- branch : develop
This commit is contained in:
parent
bb9ac688f6
commit
c5fbf56984
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ void CCmdArgs::addArg(const std::string &helpName, const std::string &helpDescri
|
|||
bool CCmdArgs::haveArg(const std::string &argName) const
|
||||
{
|
||||
// process each argument
|
||||
for(uint i = 0; i < _Args.size(); i)
|
||||
for(uint i = 0; i < _Args.size(); ++i)
|
||||
{
|
||||
const TArg &arg = _Args[i];
|
||||
|
||||
|
|
Loading…
Reference in a new issue