diff --git a/AK/FixedArray.h b/AK/FixedArray.h index c7e52a189d8..4fed8a86c90 100644 --- a/AK/FixedArray.h +++ b/AK/FixedArray.h @@ -92,11 +92,6 @@ public: return FixedArray(m_size, elements); } - FixedArray must_clone_but_fixme_should_propagate_errors() const - { - return MUST(try_clone()); - } - // Nobody can ever use these functions, since it would be impossible to make them OOM-safe due to their signatures. We just explicitly delete them. FixedArray(FixedArray const&) = delete; FixedArray& operator=(FixedArray const&) = delete;