AGOS: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
5472ec24f8
commit
9406baeac9
3 changed files with 9 additions and 0 deletions
|
@ -157,6 +157,9 @@ const byte *AGOSEngine::dumpOpcode(const byte *p) {
|
|||
debugN("NULL_STRING ");
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue