From 9044e21ed4fbd27ac1211f325c4589cb26842fb4 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 11 Jul 2021 11:41:17 -0700 Subject: [PATCH] Kernel: Remove unused header includes in VM subtree --- Kernel/VM/InodeVMObject.cpp | 1 - Kernel/VM/ProcessPagingScope.cpp | 1 - Kernel/VM/RangeAllocator.cpp | 1 - Kernel/VM/ScatterGatherList.h | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Kernel/VM/InodeVMObject.cpp b/Kernel/VM/InodeVMObject.cpp index e7be60782d..5d1d1f01a6 100644 --- a/Kernel/VM/InodeVMObject.cpp +++ b/Kernel/VM/InodeVMObject.cpp @@ -7,7 +7,6 @@ #include #include #include -#include namespace Kernel { diff --git a/Kernel/VM/ProcessPagingScope.cpp b/Kernel/VM/ProcessPagingScope.cpp index d3d4895627..9d018e35d8 100644 --- a/Kernel/VM/ProcessPagingScope.cpp +++ b/Kernel/VM/ProcessPagingScope.cpp @@ -5,7 +5,6 @@ */ #include -#include #include #include diff --git a/Kernel/VM/RangeAllocator.cpp b/Kernel/VM/RangeAllocator.cpp index 4591655d75..991de83198 100644 --- a/Kernel/VM/RangeAllocator.cpp +++ b/Kernel/VM/RangeAllocator.cpp @@ -7,7 +7,6 @@ #include #include #include -#include #include #define VM_GUARD_PAGES diff --git a/Kernel/VM/ScatterGatherList.h b/Kernel/VM/ScatterGatherList.h index 9998d677d4..4f3f5b983b 100644 --- a/Kernel/VM/ScatterGatherList.h +++ b/Kernel/VM/ScatterGatherList.h @@ -14,7 +14,7 @@ namespace Kernel { -/// A Scatter-Gather List type that owns its buffers +// A Scatter-Gather List type that owns its buffers class ScatterGatherList : public RefCounted { public: