diff options
Diffstat (limited to 'Kernel/Heap/Heap.h')
-rw-r--r-- | Kernel/Heap/Heap.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Kernel/Heap/Heap.h b/Kernel/Heap/Heap.h index dc53364113..2bf8bf9980 100644 --- a/Kernel/Heap/Heap.h +++ b/Kernel/Heap/Heap.h @@ -58,9 +58,7 @@ public: // at the end of the memory block. VERIFY(m_total_chunks * CHUNK_SIZE + (m_total_chunks + 7) / 8 <= memory_size); } - ~Heap() - { - } + ~Heap() = default; static size_t calculate_memory_for_bytes(size_t bytes) { |