AGOS: Fix Missing Default Switch Cases

These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
D G Turner 2019-10-14 14:25:16 +01:00
parent 5472ec24f8
commit 9406baeac9
3 changed files with 9 additions and 0 deletions

View file

@ -157,6 +157,9 @@ const byte *AGOSEngine::dumpOpcode(const byte *p) {
debugN("NULL_STRING ");
}
break;
default:
break;
}
}
}