From 5b1345a4ffdab4f7c1d650e6b1ad59d1da42ddd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kleines=20Filmr=C3=B6llchen?= Date: Mon, 27 Jun 2022 23:13:45 +0200 Subject: [PATCH] AK: Remove FixedArray::must_create_but_fixme_should_propagate_errors Nobody was using this anymore. --- AK/FixedArray.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/AK/FixedArray.h b/AK/FixedArray.h index c7e52a189d..4fed8a86c9 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;