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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-01-11 23:03:15 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-01-11 23:14:39 +0300
commit7a1dc205607a637e92bb5bac23dfb184472d49cb (patch)
tree1ce44343361e5cc6f98bc82560370147650a55d7 /source/blender/editors/object/object_relations.c
parent1b3b01135475d0f0edbc39e78fbe5da77b836b67 (diff)
Cleanup: quite some harmless but noisy warnings from gcc...
Diffstat (limited to 'source/blender/editors/object/object_relations.c')
-rw-r--r--source/blender/editors/object/object_relations.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 48e617eda11..67b5c8061cd 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -803,6 +803,7 @@ static void parent_set_vert_find(KDTree *tree, Object *child, int vert_par[3], b
tot = BLI_kdtree_find_nearest_n(tree, co_find, nearest, 3);
BLI_assert(tot == 3);
+ UNUSED_VARS(tot);
vert_par[0] = nearest[0].index;
vert_par[1] = nearest[1].index;