1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:54:58 +00:00

AK: Forward declare Nonnull{Own,Ref}PtrVector

This commit is contained in:
AnotherTest 2020-12-02 02:49:30 +03:30 committed by Andreas Kling
parent 5325d6871d
commit c85eaadb48
3 changed files with 10 additions and 2 deletions

View file

@ -31,7 +31,7 @@
namespace AK {
template<typename T, int inline_capacity = 0>
template<typename T, int inline_capacity>
class NonnullOwnPtrVector : public NonnullPtrVector<NonnullOwnPtr<T>, inline_capacity> {
};