COMP: Remove warning

This commit is contained in:
Andy Cedilnik 2004-10-20 12:37:39 -04:00
parent 30c71b5f20
commit fc459731db
1 changed files with 2 additions and 3 deletions

View File

@ -460,12 +460,11 @@ const char* CommandLineArguments::GetHelp(const char* arg)
= this->Internals->Callbacks.find(cs->Help);
if ( hit == this->Internals->Callbacks.end() )
{
return cs->Help;
break;
}
cs = &(hit->second);
}
// Should never happened
return 0;
return cs->Help;
}
//----------------------------------------------------------------------------