summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-02 20:25:41 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-02 20:25:41 +0100
commit25b635c841e209c7fd67be5406a941fa829f9bf2 (patch)
tree023aa2ea6d59bf8a64eb84611b6089ba1b6d291f /Kernel
parent8ccf0e16a98d872d82226adf9e844122b3e76576 (diff)
downloadserenity-25b635c841e209c7fd67be5406a941fa829f9bf2.zip
Kernel: Remove unnecessary forward declaration in SlabAllocator
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Heap/SlabAllocator.h2
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();