1
This commit is contained in:
2022-07-24 15:58:03 +02:00
parent afa2e67fd4
commit 1572590c33

View File

@ -37,10 +37,9 @@ constexpr unsigned int BASIC_ALIGN = 4; // 32 Bit so 4 Bytes?
constexpr unsigned int HEAP_MIN_FREE_BLOCK_SIZE = 64; // min. Groesse eines freien Blocks
class Allocator {
private:
public:
Allocator(Allocator& copy) = delete; // Verhindere Kopieren
public:
unsigned int heap_start;
unsigned int heap_end;
unsigned int heap_size;