From 5bd2b2699cfe08081301e8dc4a43dc06d87f2db1 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Fri, 24 Jul 2020 16:50:37 +0100 Subject: [PATCH] DolphinQt: fix -Wsign-compare warning --- Source/Core/DolphinQt/Debugger/ThreadWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp index 89f880fc1a..eb67e2ad7d 100644 --- a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp @@ -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);