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>2014-11-24 14:01:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-24 14:03:25 +0300
commit08fd38cf52e4d540e6a7d3ceeaedf4a4c3858f55 (patch)
tree6087facbd6320c76f79cf07dd2b7d8a4f51bea58 /source/blender/modifiers/intern/MOD_skin.c
parented350d9a52ea4330bde73a6c89171fc6e067e6f7 (diff)
BLI_utildefines: add UNUSED_VARS() macro
Diffstat (limited to 'source/blender/modifiers/intern/MOD_skin.c')
-rw-r--r--source/blender/modifiers/intern/MOD_skin.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_skin.c b/source/blender/modifiers/intern/MOD_skin.c
index d43fa11cfb9..bc8d86ac78f 100644
--- a/source/blender/modifiers/intern/MOD_skin.c
+++ b/source/blender/modifiers/intern/MOD_skin.c
@@ -328,8 +328,7 @@ static bool build_hull(SkinOutput *so, Frame **frames, int totframe)
return true;
#else
- (void)so, (void)frames, (void)totframe;
- (void)skin_frame_find_contained_faces;
+ UNUSED_VARS(so, frames, totframe, skin_frame_find_contained_faces);
return false;
#endif
}