From ccfee3e5732ba78fffa18f29d3d9b85cf9b522d6 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 10 Feb 2020 12:07:48 +0100 Subject: [PATCH] Kernel: Remove more includes --- Kernel/Arch/i386/CPU.h | 1 - Kernel/Assertions.h | 1 - Kernel/VM/RangeAllocator.cpp | 1 - 3 files changed, 3 deletions(-) diff --git a/Kernel/Arch/i386/CPU.h b/Kernel/Arch/i386/CPU.h index b6bbbd492fa..337e9434c02 100644 --- a/Kernel/Arch/i386/CPU.h +++ b/Kernel/Arch/i386/CPU.h @@ -30,7 +30,6 @@ #include #include #include -#include #define PAGE_SIZE 4096 #define PAGE_MASK ((uintptr_t)0xfffff000u) diff --git a/Kernel/Assertions.h b/Kernel/Assertions.h index 9f2753e3dc2..cd8244452b4 100644 --- a/Kernel/Assertions.h +++ b/Kernel/Assertions.h @@ -27,7 +27,6 @@ #pragma once #include -#include #ifdef DEBUG [[noreturn]] void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func); diff --git a/Kernel/VM/RangeAllocator.cpp b/Kernel/VM/RangeAllocator.cpp index 232f40c7ec8..5623147da94 100644 --- a/Kernel/VM/RangeAllocator.cpp +++ b/Kernel/VM/RangeAllocator.cpp @@ -29,7 +29,6 @@ #include #include #include -#include //#define VRA_DEBUG #define VM_GUARD_PAGES