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>2019-08-26 07:32:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-26 07:32:35 +0300
commit7b61fe1638051b3b2e296680a000819f31672414 (patch)
tree7b640b7fb07ac3d1663fc683c903d3b5e33bbf42 /source/blender/blenlib/intern/math_matrix.c
parent8d03e04493023d63ec05321ab8dc48dbd22363f2 (diff)
Cleanup: use BLI_assert
Diffstat (limited to 'source/blender/blenlib/intern/math_matrix.c')
-rw-r--r--source/blender/blenlib/intern/math_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c
index 1452882fbba..2568d42566c 100644
--- a/source/blender/blenlib/intern/math_matrix.c
+++ b/source/blender/blenlib/intern/math_matrix.c
@@ -2013,7 +2013,7 @@ void rotate_m4(float mat[4][4], const char axis, const float angle)
const float angle_cos = cosf(angle);
const float angle_sin = sinf(angle);
- assert(axis >= 'X' && axis <= 'Z');
+ BLI_assert(axis >= 'X' && axis <= 'Z');
switch (axis) {
case 'X':