From 3546cba4ea28f663dd59420c7bc5ea940ceea4a3 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Sun, 24 Jul 2022 15:58:17 +0200 Subject: [PATCH] reformat --- c_os/kernel/allocator/BumpAllocator.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/c_os/kernel/allocator/BumpAllocator.h b/c_os/kernel/allocator/BumpAllocator.h index b6b0229..2d5372d 100755 --- a/c_os/kernel/allocator/BumpAllocator.h +++ b/c_os/kernel/allocator/BumpAllocator.h @@ -16,16 +16,15 @@ #include "user/lib/Logger.h" class BumpAllocator : Allocator { - private: unsigned char* next; unsigned int allocations; NamedLogger log; +public: BumpAllocator(Allocator& copy) = delete; // Verhindere Kopieren -public: BumpAllocator() : log("BMP-Alloc") {}; // Allocator() called implicitely in C++ void init() override;