VMKernelArea: Ensure it's final class

Nobody should derive from it

Signed-off-by: Jarosław Pelczar <[email protected]>
This commit is contained in:
Jarosław Pelczar
2024-09-02 13:00:08 -04:00
committed by Augustin Cavalier
parent 12aa283408
commit 2b162ce972
+1 -1
View File
@@ -109,7 +109,7 @@ struct VMKernelAddressRangeGetFreeListLink {
};
struct VMKernelArea : VMArea, AVLTreeNode {
struct VMKernelArea final : VMArea, AVLTreeNode {
VMKernelArea(VMAddressSpace* addressSpace,
uint32 wiring, uint32 protection);
~VMKernelArea();