Code cleanup
This commit is contained in:
parent
7bb64c0489
commit
cdc802476d
6 changed files with 503 additions and 459 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue