Skip to content

Commit

Permalink
DolphinQt: fix -Wsign-compare warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilka committed Jul 24, 2020
1 parent 750cb1f commit 5bd2b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/Debugger/ThreadWidget.cpp
Expand Up @@ -465,7 +465,7 @@ void ThreadWidget::OnSelectionChanged(int row)
{
Common::Debug::PartialContext context;

if (row >= 0 && row < m_threads.size())
if (row >= 0 && size_t(row) < m_threads.size())
context = m_threads[row]->GetContext();

UpdateThreadContext(context);
Expand Down

0 comments on commit 5bd2b26

Please sign in to comment.