diff options
author | kleines Filmröllchen <filmroellchen@serenityos.org> | 2022-06-27 23:13:45 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-07-22 19:35:41 +0100 |
commit | 5b1345a4ffdab4f7c1d650e6b1ad59d1da42ddd2 (patch) | |
tree | 7190b986a2395e67ac23866061a129be7964dfca | |
parent | 8ab1245e4a1f80a94bbc9d571fa33c99c808fd6e (diff) | |
download | serenity-5b1345a4ffdab4f7c1d650e6b1ad59d1da42ddd2.zip |
AK: Remove FixedArray::must_create_but_fixme_should_propagate_errors
Nobody was using this anymore.
-rw-r--r-- | AK/FixedArray.h | 5 |
1 files changed, 0 insertions, 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<T>(m_size, elements); } - FixedArray<T> 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<T> const&) = delete; FixedArray<T>& operator=(FixedArray<T> const&) = delete; |