chore: general cleanup in code (removed unused includes and cosmetic stuff
This commit is contained in:
@@ -10,7 +10,7 @@ static void CombineForward(VMHeapBlockHeader* current) {
|
||||
if (!current->next || !current->next->isFree) return;
|
||||
current->size += sizeof(VMHeapBlockHeader) + current->next->size;
|
||||
current->next = current->next->next;
|
||||
if (current->next) current->next->previous = current; // what the fuck
|
||||
if (current->next) current->next->previous = current;
|
||||
}
|
||||
|
||||
void HeapInitialize() {
|
||||
|
||||
Reference in New Issue
Block a user