From a15e1d9fd4cc60c50089e5545fbf21d5f96257e3 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Sun, 24 Jul 2022 16:46:02 +0200 Subject: [PATCH] reformat --- c_os/kernel/Allocator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c_os/kernel/Allocator.h b/c_os/kernel/Allocator.h index 89d4a27..b33978b 100755 --- a/c_os/kernel/Allocator.h +++ b/c_os/kernel/Allocator.h @@ -40,13 +40,13 @@ class Allocator { public: Allocator(Allocator& copy) = delete; // Verhindere Kopieren + Allocator(); + unsigned int heap_start; unsigned int heap_end; unsigned int heap_size; unsigned int initialized; - Allocator(); - virtual void init() = 0; virtual void dump_free_memory() = 0; virtual void* alloc(unsigned int req_size) = 0;