diff options
Diffstat (limited to 'Kernel/Memory/AnonymousVMObject.h')
-rw-r--r-- | Kernel/Memory/AnonymousVMObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Memory/AnonymousVMObject.h b/Kernel/Memory/AnonymousVMObject.h index 5733235ce9..71f1ef0663 100644 --- a/Kernel/Memory/AnonymousVMObject.h +++ b/Kernel/Memory/AnonymousVMObject.h @@ -63,7 +63,7 @@ private: Bitmap m_cow_map; // AnonymousVMObject shares committed COW pages with cloned children (happens on fork) - class SharedCommittedCowPages : public RefCounted<SharedCommittedCowPages> { + class SharedCommittedCowPages final : public AtomicRefCounted<SharedCommittedCowPages> { AK_MAKE_NONCOPYABLE(SharedCommittedCowPages); public: |