diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-01 15:32:06 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-01 15:32:44 +0100 |
commit | 7c3b6b10e4230a24dbe44df4f942d63ee27cac89 (patch) | |
tree | e2a5a28649da389f4d1d79308f9e981f9df22815 /Kernel/VM/VMObject.h | |
parent | aa92adeedf345b4e66a2ccdd3153510cfbf5f620 (diff) | |
download | serenity-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.h | 1 |
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> |