Cleanup: Remove unused variable

This commit is contained in:
2023-03-01 13:03:37 -05:00
parent 2324eb4f8c
commit f1f47df56b
2 changed files with 0 additions and 2 deletions

View File

@@ -545,7 +545,6 @@ uint MeshImporter::get_loose_edge_count(COLLADAFW::Mesh *mesh)
void MeshImporter::mesh_add_edges(Mesh *mesh, int len)
{
CustomData edata;
MEdge *medge;
int totedge;
if (len == 0) {

View File

@@ -181,7 +181,6 @@ static bool polygons_check_flip(blender::MutableSpan<MLoop> loops,
{
MDisps *mdisp = static_cast<MDisps *>(
CustomData_get_layer_for_write(ldata, CD_MDISPS, loops.size()));
int i;
bool flipped = false;
for (const int i : polys.index_range()) {