diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2023-02-02 16:13:24 -0800 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2023-02-09 16:23:02 -0800 |
| commit | 3bd655463d2de8924af779fa2cf5b4272a7c189a (patch) | |
| tree | ef10296d279f8b8cd8f5ca5ae67987921a7cc871 /Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp | |
| parent | 5c8d8383e26d289c6c8fcc5eff70fc1e3de1fec2 (diff) | |
MemoryViewWidget: Fix warning: enumeration value ‘Null’ not handled in switch [-Wswitch]
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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<u8> MemoryViewWidget::ConvertTextToBytes(Type type, QString input_te } break; } + default: + // Do nothing + break; } return {}; |
