diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-02 20:25:41 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-02 20:25:41 +0100 |
commit | 25b635c841e209c7fd67be5406a941fa829f9bf2 (patch) | |
tree | 023aa2ea6d59bf8a64eb84611b6089ba1b6d291f /Kernel | |
parent | 8ccf0e16a98d872d82226adf9e844122b3e76576 (diff) | |
download | serenity-25b635c841e209c7fd67be5406a941fa829f9bf2.zip |
Kernel: Remove unnecessary forward declaration in SlabAllocator
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Heap/SlabAllocator.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Heap/SlabAllocator.h b/Kernel/Heap/SlabAllocator.h index 8415bb8f07..5cebc0cf9e 100644 --- a/Kernel/Heap/SlabAllocator.h +++ b/Kernel/Heap/SlabAllocator.h @@ -32,8 +32,6 @@ #define SLAB_ALLOC_SCRUB_BYTE 0xab #define SLAB_DEALLOC_SCRUB_BYTE 0xbc -class JsonObjectSerializer; - void* slab_alloc(size_t slab_size); void slab_dealloc(void*, size_t slab_size); void slab_alloc_init(); |