LAB: Fix Missing Default Switch Cases

These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
D G Turner 2019-11-14 23:48:05 +00:00
parent d7a22f72a1
commit 4aaff742fc
2 changed files with 13 additions and 0 deletions

View file

@ -469,6 +469,9 @@ void LabEngine::doActions(const ActionList &actionList) {
}
break;
default:
break;
}
}