Fix invalid return value assignment in getEdgeVertexIndices

This commit is contained in:
Campbell Barton 2021-06-10 01:55:40 +10:00
parent 059f19d821
commit 84af1eaa92
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ void MeshTopology::getEdgeVertexIndices(int edge_index, int *v1, int *v2) const
if (edge_index >= edges_.size()) {
*v1 = -1;
*v1 = -1;
*v2 = -1;
return;
}