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.
wilder
Luis Javier Merino Morán 4 years ago committed by Tomaz Canabrava
parent 26220e4e10
commit c78aa91f2e
  1. 2
      src/Vt102Emulation.cpp

@ -879,6 +879,8 @@ void Vt102Emulation::receiveChars(const QVector<uint> &chars)
switchState(Ground, cc);
}
break;
default:
break;
}
}
} else {

Loading…
Cancel
Save