From ae3778c3032892f031f8104f99dfad6dd39d448c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 25 Jul 2021 17:06:51 +0200 Subject: [PATCH] Kernel: Remove unused enum Region::SetVolatileError --- Kernel/VM/Region.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Kernel/VM/Region.h b/Kernel/VM/Region.h index d6f0326d01..9f3029ea1c 100644 --- a/Kernel/VM/Region.h +++ b/Kernel/VM/Region.h @@ -198,12 +198,6 @@ public: void remap(); - enum class SetVolatileError { - Success = 0, - NotPurgeable, - OutOfMemory - }; - bool is_syscall_region() const { return m_syscall_region; } void set_syscall_region(bool b) { m_syscall_region = b; }