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>2012-11-20 18:31:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-20 18:31:58 +0400
commit68e9fdeb810e1665c1415abffc43ba3e2030e88d (patch)
tree525c25c2712187be90d49a469d5db452af9cf5c3 /source/blender/bmesh/intern/bmesh_operators.c
parentf92359cc2998126395ff772f1f0d20867c058be0 (diff)
code cleanup: comment unused members of bmesh operator slots and some osl style edits.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.c b/source/blender/bmesh/intern/bmesh_operators.c
index 2566d6bfa24..54035b47b57 100644
--- a/source/blender/bmesh/intern/bmesh_operators.c
+++ b/source/blender/bmesh/intern/bmesh_operators.c
@@ -133,7 +133,7 @@ static void bmo_op_slots_init(BMOSlotType *slot_types, BMOpSlot *slot_args)
for (i = 0; slot_types[i].type; i++) {
slot_args[i].slot_name = slot_types[i].name;
slot_args[i].slot_type = slot_types[i].type;
- slot_args[i].index = i;
+ // slot_args[i].index = i; // UNUSED
}
}