AK: Let Array::from_span take a readonly Span

We are copying here, so there is no need to require a non-const Span.
This commit is contained in:
Tim Schumacher 2023-07-09 14:09:44 +02:00 committed by Linus Groh
parent 467bc5b093
commit 8a9761de20
Notes: sideshowbarker 2024-07-17 06:51:40 +09:00

View File

@ -29,7 +29,7 @@ struct Array {
using ValueType = T;
// This is a static function because constructors mess up Array's POD-ness.
static Array from_span(Span<T> span)
static Array from_span(ReadonlySpan<T> span)
{
Array array;
VERIFY(span.size() == Size);