From 63a5f48e7ef9e0000244809e9e000a892a3afedd Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 6 Jul 2019 02:13:58 -0400 Subject: [PATCH] memory: Remove unused PageTable forward declaration This isn't used by anything in the header file, so it can be removed. --- src/core/memory.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/memory.h b/src/core/memory.h index 04e2c5f1d..09008e1dd 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -8,10 +8,6 @@ #include #include "common/common_types.h" -namespace Common { -struct PageTable; -} - namespace Kernel { class Process; }