From ab9f060c047da5894b7528d9cdbd384826c0e690 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Tue, 24 Sep 2019 10:36:32 -0230 Subject: [PATCH] One final fix for clang warning. --- src/debugger/DebuggerParser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugger/DebuggerParser.cxx b/src/debugger/DebuggerParser.cxx index b8e15ff90..73026a213 100644 --- a/src/debugger/DebuggerParser.cxx +++ b/src/debugger/DebuggerParser.cxx @@ -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)) {