From 3bd655463d2de8924af779fa2cf5b4272a7c189a Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Thu, 2 Feb 2023 16:13:24 -0800 Subject: [PATCH] =?UTF-8?q?MemoryViewWidget:=20Fix=20warning:=20enumeratio?= =?UTF-8?q?n=20value=20=E2=80=98Null=E2=80=99=20not=20handled=20in=20switc?= =?UTF-8?q?h=20[-Wswitch]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp index 646f98a176..e99c7a8755 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp @@ -728,6 +728,9 @@ std::vector MemoryViewWidget::ConvertTextToBytes(Type type, QString input_te } break; } + default: + // Do nothing + break; } return {};