mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
AK: Add a deduction guide to Vector
Note that this does not generate a vector with inline capacity.
This commit is contained in:
parent
6c9ef20010
commit
2891dca0cd
1 changed files with 3 additions and 0 deletions
|
@ -782,6 +782,9 @@ private:
|
||||||
StorageType* m_outline_buffer { nullptr };
|
StorageType* m_outline_buffer { nullptr };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<class... Args>
|
||||||
|
Vector(Args... args) -> Vector<CommonType<Args...>>;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
using AK::Vector;
|
using AK::Vector;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue