Unverified Commit 52814d11 by Rémi Verschelde Committed by GitHub

Merge pull request #39089 from mrushyendra/localVectorBug

Fix unsigned integer bug in LocalVector::erase
parents 2aa46ee4 4ef246f8
......@@ -75,7 +75,7 @@ public:
}
void erase(const T &p_val) {
U idx = find(p_val);
int64_t idx = find(p_val);
if (idx >= 0) {
remove(idx);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment