From c78aa91f2eb0b2ba24f1f567ecbff8ad47428b68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Javier=20Merino=20Mor=C3=A1n?= Date: Thu, 26 May 2022 18:54:33 +0200 Subject: [PATCH] Get rid of switch warning GCC complains of enumeration values Vt52Escape, Vt52CupRow and Vt52CupColumn not being handled in switch, but they cannot occur on non-VT52 mode. --- src/Vt102Emulation.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Vt102Emulation.cpp b/src/Vt102Emulation.cpp index 1755f1c0..6669a456 100644 --- a/src/Vt102Emulation.cpp +++ b/src/Vt102Emulation.cpp @@ -879,6 +879,8 @@ void Vt102Emulation::receiveChars(const QVector &chars) switchState(Ground, cc); } break; + default: + break; } } } else {