Fix definition of explicitly sized enums

liquid_container
Nicolas Hake 2016-04-24 15:20:28 +02:00
parent baad3aef3c
commit 19a3d43558
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@
#define C4AUL_CodeBufSize 16
// script token type
enum C4AulTokenType
enum C4AulTokenType : int
{
ATT_INVALID,// invalid token
ATT_DIR, // directive

View File

@ -21,7 +21,7 @@
// byte code chunk type
// some special script functions defined hard-coded to reduce the exec context
enum C4AulBCCType
enum C4AulBCCType : int
{
AB_ARRAYA, // array or proplist access
AB_ARRAYA_SET,