From 8c627bc5177b4ea9ee73c407cd94b78f79284d2c Mon Sep 17 00:00:00 2001 From: Steven Eker Date: Mon, 9 Dec 2024 23:26:19 +0100 Subject: [PATCH] fix formatting --- runtime/alloc/arena.cpp | 2 +- runtime/collect/collect.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/alloc/arena.cpp b/runtime/alloc/arena.cpp index d69179fab..d10bcaad9 100644 --- a/runtime/alloc/arena.cpp +++ b/runtime/alloc/arena.cpp @@ -7,8 +7,8 @@ #include "runtime/alloc.h" #include "runtime/arena.h" -#include "runtime/header.h" #include "runtime/collect.h" +#include "runtime/header.h" extern size_t const VAR_BLOCK_SIZE = BLOCK_SIZE; diff --git a/runtime/collect/collect.cpp b/runtime/collect/collect.cpp index 72ceae6cd..25a580ccb 100644 --- a/runtime/collect/collect.cpp +++ b/runtime/collect/collect.cpp @@ -12,7 +12,7 @@ extern "C" { extern thread_local arena youngspace; extern thread_local arena oldspace; - + char *youngspace_ptr(void); char *oldspace_ptr(void);