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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-09-02 21:24:56 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-09-02 21:24:56 +0400
commit15039b14fffd783f4f9da86b6de8596f7d904baa (patch)
treeae7155b676a325dbbae7fb4d9a3a0fd48cf73533 /source/blender/bmesh/intern/bmesh_operators.c
parent6ac7b03b2c74ce00d2e5b4bed58355d243adaff8 (diff)
Make strict compiler happy for release builds.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.c b/source/blender/bmesh/intern/bmesh_operators.c
index a3843b683be..9551c55959e 100644
--- a/source/blender/bmesh/intern/bmesh_operators.c
+++ b/source/blender/bmesh/intern/bmesh_operators.c
@@ -665,6 +665,8 @@ int BMO_slot_map_count(BMOpSlot slot_args[BMO_OP_MAX_SLOTS], const char *slot_na
void BMO_slot_map_insert(BMOperator *op, BMOpSlot *slot,
const void *element, const void *data)
{
+ (void) op; /* Ignored in release builds. */
+
BLI_assert(slot->slot_type == BMO_OP_SLOT_MAPPING);
BMO_ASSERT_SLOT_IN_OP(slot, op);