AK: Make NonnullRefPtrVector constructible from Vector<NonnullRefPtr>
This commit is contained in:
parent
8527f00065
commit
7b2c838162
Notes:
sideshowbarker
2024-07-18 12:28:10 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/7b2c8381623 Pull-request: https://github.com/SerenityOS/serenity/pull/7977 Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 0 deletions
|
@ -13,6 +13,7 @@ namespace AK {
|
|||
|
||||
template<typename T, size_t inline_capacity>
|
||||
class NonnullRefPtrVector : public NonnullPtrVector<NonnullRefPtr<T>, inline_capacity> {
|
||||
using NonnullPtrVector<NonnullRefPtr<T>, inline_capacity>::NonnullPtrVector;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue