diff --git a/AK/Span.h b/AK/Span.h index 4a856fe83c..ecdf57af24 100644 --- a/AK/Span.h +++ b/AK/Span.h @@ -109,6 +109,11 @@ public: using Detail::Span::Span; + ALWAYS_INLINE Span(std::nullptr_t) + : Span() + { + } + ALWAYS_INLINE Span(const Span& other) : Span(other.m_values, other.m_size) {