mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:27:35 +00:00
AK+Kernel: Remove all the Nonnull*PtrVector classes
This commit is contained in:
parent
be91020d0b
commit
5aa12da959
5 changed files with 0 additions and 155 deletions
|
@ -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;
|
Loading…
Add table
Add a link
Reference in a new issue