mirror of https://github.com/stella-emu/stella.git
One final fix for clang warning.
This commit is contained in:
parent
8fa253d68e
commit
ab9f060c04
|
@ -108,7 +108,7 @@ string DebuggerParser::run(const string& command)
|
||||||
getArgs(command, verb);
|
getArgs(command, verb);
|
||||||
commandResult.str("");
|
commandResult.str("");
|
||||||
|
|
||||||
for(int i = 0; i < commands.size(); ++i)
|
for(int i = 0; i < int(commands.size()); ++i)
|
||||||
{
|
{
|
||||||
if(BSPF::equalsIgnoreCase(verb, commands[i].cmdString))
|
if(BSPF::equalsIgnoreCase(verb, commands[i].cmdString))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue