Fix constness of Array::find, Array::find_last and Array::rfind

This commit is contained in:
Colugo
2020-12-20 16:44:49 +00:00
parent 01c003dfed
commit 38c9b624db
2 changed files with 6 additions and 6 deletions

View File

@@ -104,9 +104,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;
@@ -132,7 +132,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();