From 3bd47a2e09e31ade766d0cf0b743763ff115d0e2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 27 Jun 2019 13:39:09 +0200 Subject: [PATCH] AK: NonnullRefPtrVector should use Vector as its base. We were forgetting to plumb through the inline capacity in the Base typedef. --- AK/NonnullRefPtrVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/NonnullRefPtrVector.h b/AK/NonnullRefPtrVector.h index 7293476efcd..151863fe836 100644 --- a/AK/NonnullRefPtrVector.h +++ b/AK/NonnullRefPtrVector.h @@ -7,7 +7,7 @@ namespace AK { template class NonnullRefPtrVector : public Vector, inline_capacity> { - typedef Vector> Base; + typedef Vector, inline_capacity> Base; public: NonnullRefPtrVector()