Fixed: Missing ++
This commit is contained in:
parent
1cc7c18f1a
commit
2355f81fbd
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
|
bool CCmdArgs::haveArg(const std::string &argName) const
|
||||||
{
|
{
|
||||||
// process each argument
|
// process each argument
|
||||||
for(uint i = 0; i < _Args.size(); i)
|
for(uint i = 0; i < _Args.size(); ++i)
|
||||||
{
|
{
|
||||||
const TArg &arg = _Args[i];
|
const TArg &arg = _Args[i];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue