summaryrefslogtreecommitdiff
path: root/Kernel/VM/PhysicalRegion.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-21 18:45:35 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-21 18:45:59 +0200
commit550b0b062b457d49fd30981378d00e0b47250608 (patch)
treee2b21556320630143428e8dd84a0697df6ebf1e4 /Kernel/VM/PhysicalRegion.cpp
parente97d714bbc38a65c60b6064a74cf1abad90834ae (diff)
downloadserenity-550b0b062b457d49fd30981378d00e0b47250608.zip
AK: Rename RetainPtr.h => RefPtr.h, Retained.h => NonnullRefPtr.h.
Diffstat (limited to 'Kernel/VM/PhysicalRegion.cpp')
-rw-r--r--Kernel/VM/PhysicalRegion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/VM/PhysicalRegion.cpp b/Kernel/VM/PhysicalRegion.cpp
index 436f17d144..1aa2b73caf 100644
--- a/Kernel/VM/PhysicalRegion.cpp
+++ b/Kernel/VM/PhysicalRegion.cpp
@@ -1,6 +1,6 @@
#include <AK/Bitmap.h>
-#include <AK/Retained.h>
-#include <AK/RetainPtr.h>
+#include <AK/NonnullRefPtr.h>
+#include <AK/RefPtr.h>
#include <Kernel/Assertions.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/VM/PhysicalPage.h>