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;