diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp b/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp index ffe2a92..dd0efc6 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp @@ -53,7 +53,7 @@ CommandObjectQuit::ShouldAskForConfirmation (bool& is_a_detach) continue; const TargetList& target_list(debugger_sp->GetTargetList()); for (uint32_t target_idx = 0; - target_idx < target_list.GetNumTargets(); + target_idx < static_cast<uint32_t>(target_list.GetNumTargets()); target_idx++) { TargetSP target_sp(target_list.GetTargetAtIndex(target_idx)); |