LAB: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
d7a22f72a1
commit
4aaff742fc
2 changed files with 13 additions and 0 deletions
|
@ -469,6 +469,9 @@ void LabEngine::doActions(const ActionList &actionList) {
|
|||
}
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue