From 3bd655463d2de8924af779fa2cf5b4272a7c189a Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Thu, 2 Feb 2023 16:13:24 -0800 Subject: =?UTF-8?q?MemoryViewWidget:=20Fix=20warning:=20enumeration=20valu?= =?UTF-8?q?e=20=E2=80=98Null=E2=80=99=20not=20handled=20in=20switch=20[-Ws?= =?UTF-8?q?witch]?= 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(+) (limited to 'Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp') 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 {}; -- cgit v1.2.3