Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-03-05 01:16:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-05 01:16:12 +0300
commit4e500101a7dd3ea578ca6d6f101c0d9ece7f5abc (patch)
treeb84e5af642e8f702c2bc34a26155a49284fbda9b /source/blender/editors/mesh/editmesh_path.c
parentfea07c1a63fdfe3bf25d77d862e83bdf024347b8 (diff)
Cleanup: quiet -Wcomma, cast to void where needed
Diffstat (limited to 'source/blender/editors/mesh/editmesh_path.c')
-rw-r--r--source/blender/editors/mesh/editmesh_path.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/mesh/editmesh_path.c b/source/blender/editors/mesh/editmesh_path.c
index 53b7e9fb740..587636b5a97 100644
--- a/source/blender/editors/mesh/editmesh_path.c
+++ b/source/blender/editors/mesh/editmesh_path.c
@@ -161,7 +161,7 @@ static void mouse_mesh_shortest_path_vert(
verttag_set_cb((BMVert *)node->link, !all_set, &user_data);
v_dst_last = node->link;
}
- } while (depth++, (node = node->next));
+ } while ((void)depth++, (node = node->next));
BLI_linklist_free(path, NULL);
}
@@ -336,7 +336,7 @@ static void mouse_mesh_shortest_path_edge(
edgetag_set_cb((BMEdge *)node->link, !all_set, &user_data);
e_dst_last = node->link;
}
- } while (depth++, (node = node->next));
+ } while ((void)depth++, (node = node->next));
BLI_linklist_free(path, NULL);
}
@@ -466,7 +466,7 @@ static void mouse_mesh_shortest_path_face(
facetag_set_cb((BMFace *)node->link, !all_set, &user_data);
f_dst_last = node->link;
}
- } while (depth++, (node = node->next));
+ } while ((void)depth++, (node = node->next));
BLI_linklist_free(path, NULL);
}