diff options
author | Marc <marc.gilleron@gmail.com> | 2021-01-31 20:06:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-31 20:06:56 +0000 |
commit | b400dba87534640eeddbcdb6b319335a6a7639d8 (patch) | |
tree | 286a8e2e25c18fe11f346835b3021afae2e9b77f /include/core/Array.hpp | |
parent | fb71edd45b2473bf0ac502c777a1850fb564087e (diff) | |
parent | 05ba977cc60653952b73dc03498ebc7a93cef120 (diff) | |
download | redot-cpp-b400dba87534640eeddbcdb6b319335a6a7639d8.tar.gz |
Merge branch 'master' into container_leaks
Diffstat (limited to 'include/core/Array.hpp')
-rw-r--r-- | include/core/Array.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/Array.hpp b/include/core/Array.hpp index 84dc012..5913fae 100644 --- a/include/core/Array.hpp +++ b/include/core/Array.hpp @@ -106,9 +106,9 @@ public: Variant back() const; - int find(const Variant &what, const int from = 0); + int find(const Variant &what, const int from = 0) const; - int find_last(const Variant &what); + int find_last(const Variant &what) const; bool has(const Variant &what) const; @@ -134,7 +134,7 @@ public: void resize(const int size); - int rfind(const Variant &what, const int from = -1); + int rfind(const Variant &what, const int from = -1) const; void sort(); |