fixed wrong bump allocator init
This commit is contained in:
2
c_os/kernel/allocator/BumpAllocator.h
Normal file → Executable file
2
c_os/kernel/allocator/BumpAllocator.h
Normal file → Executable 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();
|
||||
|
||||
Reference in New Issue
Block a user