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>2019-04-17 11:54:56 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-04-17 11:54:56 +0300
commit8afb13019dd9b9096c5eb4854e73fa513f83c739 (patch)
tree887afbcf4d85c220a31f6af305edc5c96f0252ee /source/blender/blenkernel/intern/armature_update.c
parent1961c61d2033b301ffcaf22ac3bfbe3852a6a4f4 (diff)
Cleanup: Silence compiler warning with release builds
Diffstat (limited to 'source/blender/blenkernel/intern/armature_update.c')
-rw-r--r--source/blender/blenkernel/intern/armature_update.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/armature_update.c b/source/blender/blenkernel/intern/armature_update.c
index 917d29a9bbf..e6e9b561e78 100644
--- a/source/blender/blenkernel/intern/armature_update.c
+++ b/source/blender/blenkernel/intern/armature_update.c
@@ -806,6 +806,7 @@ static void pose_eval_cleanup_common(Object *object)
bPose *pose = object->pose;
BLI_assert(pose != NULL);
BLI_assert(pose->chan_array != NULL || BLI_listbase_is_empty(&pose->chanbase));
+ UNUSED_VARS_NDEBUG(pose);
}
void BKE_pose_eval_done(struct Depsgraph *depsgraph, Object *object)