diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-25 19:29:00 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-25 19:29:00 +0100 |
commit | c51a86e9bb58ecdec31c385891961e6e6baf57e6 (patch) | |
tree | 3c1c9270783f90d90d1c92d15b1725b9b5c2a257 /core/variant/array.h | |
parent | 6e693368e1bbf7a8d03a137057824b43acedb183 (diff) | |
parent | 67cdac6db82c33f30601a50e1da9d86b6c163426 (diff) |
Merge pull request #69168 from Mickeon/what-the-heck-is-this-part-2
Remove `Array.find_last()`
Diffstat (limited to 'core/variant/array.h')
-rw-r--r-- | core/variant/array.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/variant/array.h b/core/variant/array.h index ee265a9ffd..2dd3dde2d1 100644 --- a/core/variant/array.h +++ b/core/variant/array.h @@ -90,7 +90,6 @@ public: int find(const Variant &p_value, int p_from = 0) const; int rfind(const Variant &p_value, int p_from = -1) const; - int find_last(const Variant &p_value) const; int count(const Variant &p_value) const; bool has(const Variant &p_value) const; |