summaryrefslogtreecommitdiff
path: root/Kernel/VM/PhysicalRegion.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-21 15:29:31 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-21 15:30:03 +0200
commit77b9fa89dd36fcd56d956667a956ef7f2ee8f963 (patch)
treeaf2cf88f4de319ebc9b0a9a09ecf379b2311e71e /Kernel/VM/PhysicalRegion.h
parentef1bfcb9d881ba49cd0e2135375cf4cbb9e85a92 (diff)
downloadserenity-77b9fa89dd36fcd56d956667a956ef7f2ee8f963.zip
AK: Rename Retainable => RefCounted.
(And various related renames that go along with it.)
Diffstat (limited to 'Kernel/VM/PhysicalRegion.h')
-rw-r--r--Kernel/VM/PhysicalRegion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/VM/PhysicalRegion.h b/Kernel/VM/PhysicalRegion.h
index b14b6daf1a..7cecc4b365 100644
--- a/Kernel/VM/PhysicalRegion.h
+++ b/Kernel/VM/PhysicalRegion.h
@@ -6,7 +6,7 @@
#include <Kernel/PhysicalAddress.h>
#include <Kernel/VM/PhysicalPage.h>
-class PhysicalRegion : public Retainable<PhysicalRegion> {
+class PhysicalRegion : public RefCounted<PhysicalRegion> {
AK_MAKE_ETERNAL
public: