Code cleanup

This commit is contained in:
Victor Olin 2023-03-08 16:47:34 +01:00
parent 7bb64c0489
commit cdc802476d
6 changed files with 503 additions and 459 deletions

View file

@ -2,14 +2,14 @@
#include <stdlib.h>
#define CHUNK_LIST_CAP 1024
namespace GC
{
namespace GC {
struct Chunk {
bool marked;
uintptr_t *start;
size_t size;
};
struct Chunk
{
bool marked;
uintptr_t *start;
size_t size;
};
}