Use unused from in local vector find function.
This commit is contained in:
parent
92f7504637
commit
14d5908057
1 changed files with 2 additions and 1 deletions
|
@ -178,7 +178,8 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
int64_t find(const T &p_val, U p_from = 0) const {
|
int64_t find(const T &p_val, U p_from = 0) const {
|
||||||
for (U i = 0; i < count; i++) {
|
ERR_FAIL_UNSIGNED_INDEX_V(p_from, count, -1);
|
||||||
|
for (U i = p_from; i < count; i++) {
|
||||||
if (data[i] == p_val) {
|
if (data[i] == p_val) {
|
||||||
return int64_t(i);
|
return int64_t(i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue