1

fixed wrong bump allocator init

This commit is contained in:
churl
2022-05-07 14:30:40 +02:00
parent f6789b3950
commit 7f3c70f87a
10 changed files with 61 additions and 73 deletions

2
c_os/kernel/allocator/BumpAllocator.h Normal file → Executable file
View File

@ -23,7 +23,7 @@ private:
BumpAllocator(Allocator& copy); // Verhindere Kopieren
public:
BumpAllocator() {}
BumpAllocator() {}; // Allocator() called implicitely in C++
void init();
void dump_free_memory();