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

AK+Kernel: Remove all the Nonnull*PtrVector classes

This commit is contained in:
Andreas Kling 2023-03-06 18:06:01 +01:00
parent be91020d0b
commit 5aa12da959
5 changed files with 0 additions and 155 deletions

View file

@ -1,21 +0,0 @@
/*
* Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/NonnullPtrVector.h>
#include <Kernel/Library/NonnullLockRefPtr.h>
namespace AK {
template<typename T, size_t inline_capacity>
class NonnullLockRefPtrVector : public NonnullPtrVector<NonnullLockRefPtr<T>, inline_capacity> {
using NonnullPtrVector<NonnullLockRefPtr<T>, inline_capacity>::NonnullPtrVector;
};
}
using AK::NonnullLockRefPtrVector;