1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:27:36 +00:00

AK: Rename RetainPtr.h => RefPtr.h, Retained.h => NonnullRefPtr.h.

This commit is contained in:
Andreas Kling 2019-06-21 18:45:35 +02:00
parent e97d714bbc
commit 550b0b062b
39 changed files with 39 additions and 39 deletions

View file

@ -5,7 +5,7 @@
#include <AK/Bitmap.h>
#include <AK/ByteBuffer.h>
#include <AK/HashTable.h>
#include <AK/RetainPtr.h>
#include <AK/RefPtr.h>
#include <AK/Retainable.h>
#include <AK/Types.h>
#include <AK/Vector.h>

View file

@ -1,7 +1,7 @@
#pragma once
#include <AK/HashMap.h>
#include <AK/RetainPtr.h>
#include <AK/RefPtr.h>
#include <AK/Retainable.h>
#include <Kernel/VM/PhysicalPage.h>
#include <Kernel/VM/RangeAllocator.h>

View file

@ -1,6 +1,6 @@
#pragma once
#include <AK/Retained.h>
#include <AK/NonnullRefPtr.h>
#include <Kernel/Assertions.h>
#include <Kernel/PhysicalAddress.h>

View file

@ -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>

View file

@ -2,7 +2,7 @@
#include <AK/Bitmap.h>
#include <AK/Retainable.h>
#include <AK/Retained.h>
#include <AK/NonnullRefPtr.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/VM/PhysicalPage.h>

View file

@ -2,7 +2,7 @@
#include <AK/AKString.h>
#include <AK/Badge.h>
#include <AK/RetainPtr.h>
#include <AK/RefPtr.h>
#include <AK/Retainable.h>
#include <AK/Vector.h>
#include <AK/Weakable.h>