From 2891dca0cd3a6cf960458bc4df55a599d1846425 Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Thu, 22 Jul 2021 19:06:16 +0430 Subject: [PATCH] AK: Add a deduction guide to Vector Note that this does not generate a vector with inline capacity. --- AK/Vector.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AK/Vector.h b/AK/Vector.h index 2296bc5884f..88d1348e84c 100644 --- a/AK/Vector.h +++ b/AK/Vector.h @@ -782,6 +782,9 @@ private: StorageType* m_outline_buffer { nullptr }; }; +template +Vector(Args... args) -> Vector>; + } using AK::Vector;