From e3e682c4cad9a268cdd74ae6cf96782b347fe8c7 Mon Sep 17 00:00:00 2001 From: Aapo Vienamo Date: Tue, 1 Oct 2019 00:38:36 +0300 Subject: [PATCH] WatchWidget: Change type of NUM_COLUMNS to int Fixes integer comparison signedness warnings. --- Source/Core/DolphinQt/Debugger/WatchWidget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Debugger/WatchWidget.h b/Source/Core/DolphinQt/Debugger/WatchWidget.h index 922f7c6b22..4741a5ed0a 100644 --- a/Source/Core/DolphinQt/Debugger/WatchWidget.h +++ b/Source/Core/DolphinQt/Debugger/WatchWidget.h @@ -54,5 +54,5 @@ private: bool m_updating = false; - static constexpr size_t NUM_COLUMNS = 6; + static constexpr int NUM_COLUMNS = 6; };