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-08-28 17:00:40 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-08-28 17:00:40 +0300
commitd5192d6fd64959ccede2b9a0014f8b411dec225c (patch)
tree010382c9bcde8c8d9b0437b4122ca272ddcb2918
parent6f97855d06a6c366d18d93458141d206a99f7c9a (diff)
Fix strict compiler warning in release mode
-rw-r--r--source/blender/blenkernel/intern/curve.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/curve.c b/source/blender/blenkernel/intern/curve.c
index 0126c261fa1..3112e1b5ed1 100644
--- a/source/blender/blenkernel/intern/curve.c
+++ b/source/blender/blenkernel/intern/curve.c
@@ -4630,6 +4630,7 @@ void BKE_curve_nurbs_vert_coords_get(ListBase *lb, float (*vert_coords)[3], int
}
}
BLI_assert(co == vert_coords[vert_len]);
+ UNUSED_VARS_NDEBUG(vert_len);
}
float (*BKE_curve_nurbs_vert_coords_alloc(ListBase *lb, int *r_vert_len))[3]