summaryrefslogtreecommitdiff
path: root/Kernel/VM/VMObject.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-01 15:32:06 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-01 15:32:44 +0100
commit7c3b6b10e4230a24dbe44df4f942d63ee27cac89 (patch)
treee2a5a28649da389f4d1d79308f9e981f9df22815 /Kernel/VM/VMObject.h
parentaa92adeedf345b4e66a2ccdd3153510cfbf5f620 (diff)
downloadserenity-7c3b6b10e4230a24dbe44df4f942d63ee27cac89.zip
Kernel: Remove the limited use of AK::TypeTraits we had in the kernel
This was only used for VMObject and we can do without it there. This is preparation for migrating to dynamic_cast-based helpers in userspace.
Diffstat (limited to 'Kernel/VM/VMObject.h')
-rw-r--r--Kernel/VM/VMObject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/VM/VMObject.h b/Kernel/VM/VMObject.h
index 11bb4dada5..e126113f79 100644
--- a/Kernel/VM/VMObject.h
+++ b/Kernel/VM/VMObject.h
@@ -29,7 +29,6 @@
#include <AK/InlineLinkedList.h>
#include <AK/RefCounted.h>
#include <AK/RefPtr.h>
-#include <AK/TypeCasts.h>
#include <AK/Vector.h>
#include <AK/Weakable.h>
#include <Kernel/Lock.h>