summaryrefslogtreecommitdiff
path: root/AK/FixedArray.h
diff options
context:
space:
mode:
authorkleines Filmröllchen <filmroellchen@serenityos.org>2022-06-27 23:13:45 +0200
committerLinus Groh <mail@linusgroh.de>2022-07-22 19:35:41 +0100
commit5b1345a4ffdab4f7c1d650e6b1ad59d1da42ddd2 (patch)
tree7190b986a2395e67ac23866061a129be7964dfca /AK/FixedArray.h
parent8ab1245e4a1f80a94bbc9d571fa33c99c808fd6e (diff)
downloadserenity-5b1345a4ffdab4f7c1d650e6b1ad59d1da42ddd2.zip
AK: Remove FixedArray::must_create_but_fixme_should_propagate_errors
Nobody was using this anymore.
Diffstat (limited to 'AK/FixedArray.h')
-rw-r--r--AK/FixedArray.h5
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;