mirror of
https://codeberg.org/andyscott/marCsweep.git
synced 2024-11-09 13:50:51 -05:00
VM: added declaration for the mark bit
This commit is contained in:
parent
d89f7e13cf
commit
0707fd4ca4
1 changed files with 1 additions and 0 deletions
1
vm.h
1
vm.h
|
@ -13,6 +13,7 @@ enum garbageData {
|
|||
struct garbageObject {
|
||||
enum garbageData type;
|
||||
struct garbageObject *next;
|
||||
unsigned char mark;
|
||||
|
||||
union {
|
||||
int value;
|
||||
|
|
Loading…
Reference in a new issue