Remove implicit conversion from LocalVector to PoolVector

This commit is contained in:
lawnjelly
2025-06-14 20:11:48 +01:00
parent 3c35777742
commit 035ffd8caa
4 changed files with 6 additions and 6 deletions

View File

@ -281,7 +281,7 @@ bool VertexCacheOptimizer::reorder_indices_pool(PoolVector<int> &r_indices, uint
LocalVector<int> temp;
temp = r_indices;
if (reorder_indices(temp, p_num_triangles, p_num_verts)) {
r_indices = temp;
r_indices = PoolVector<int>(temp);
return true;
}
return false;