minor formatting fixes

This commit is contained in:
2023-02-09 12:52:36 -06:00
committed by cpunch
parent b902ac90de
commit e335fd95d6
4 changed files with 2 additions and 13 deletions

View File

@@ -59,8 +59,7 @@ struct CState
CValue *top; // top of the stack
CObjObject *protoObjects[COBJ_MAX]; // proto object for each COBJ type [NULL = no default proto]
CObjString
*iStrings[ISTRING_MAX]; // strings used internally by the VM, eg. __init, __index & friends
CObjString *iStrings[ISTRING_MAX]; // strings used internally by the VM, eg. __init, __index
CCallFrame callFrame[FRAME_MAX]; // call frames
CValue stack[STACK_MAX]; // stack
};