One final fix for clang warning.

This commit is contained in:
Stephen Anthony 2019-09-24 10:36:32 -02:30
parent 8fa253d68e
commit ab9f060c04
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ string DebuggerParser::run(const string& command)
getArgs(command, verb);
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))
{