diff options
Diffstat (limited to 'src/kernel/KernelKit/CoreProcessScheduler.h')
| -rw-r--r-- | src/kernel/KernelKit/CoreProcessScheduler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/KernelKit/CoreProcessScheduler.h b/src/kernel/KernelKit/CoreProcessScheduler.h index a6f817f7..9b05d27d 100644 --- a/src/kernel/KernelKit/CoreProcessScheduler.h +++ b/src/kernel/KernelKit/CoreProcessScheduler.h @@ -48,7 +48,7 @@ enum struct TreeKind : UInt32 { }; template <typename T> -struct ProcessHeapTree { +struct ProcessHeapTree final { static constexpr auto kHeap = true; static constexpr auto kFile = false; static constexpr auto kSpecial = false; @@ -67,7 +67,7 @@ struct ProcessHeapTree { }; template <typename T> -struct ProcessFileTree { +struct ProcessFileTree final { static constexpr auto kHeap = false; static constexpr auto kFile = true; static constexpr auto kSpecial = false; @@ -88,7 +88,7 @@ struct ProcessFileTree { }; template <typename T> -struct ProcessSpecialTree { +struct ProcessSpecialTree final { static constexpr auto kHeap = false; static constexpr auto kFile = false; static constexpr auto kSpecial = true; |
