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:
authorBastien Montagne <bastien@blender.org>2021-10-20 15:56:18 +0300
committerBastien Montagne <bastien@blender.org>2021-10-20 15:56:18 +0300
commit3435ea014d42d1e223513f448cbdaba63864115c (patch)
tree875ab41e6907990225972ff105e6503c45ec2b51 /source/blender/blenkernel/intern/armature_test.cc
parentdfb193f634bf2d4b6a28b458d7d23b79bcd45633 (diff)
Cleanup: unused parameters, `nullptr` instead of `NULL` in cpp code...
Diffstat (limited to 'source/blender/blenkernel/intern/armature_test.cc')
-rw-r--r--source/blender/blenkernel/intern/armature_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/armature_test.cc b/source/blender/blenkernel/intern/armature_test.cc
index 3d22351e9a6..bd2088c6aba 100644
--- a/source/blender/blenkernel/intern/armature_test.cc
+++ b/source/blender/blenkernel/intern/armature_test.cc
@@ -309,7 +309,7 @@ static double test_vec_roll_to_mat3_orthogonal(double s, double x, double z)
{
const float input[3] = {float(x), float(s * sqrt(1 - x * x - z * z)), float(z)};
- return test_vec_roll_to_mat3_normalized(input, 0.0f, NULL);
+ return test_vec_roll_to_mat3_normalized(input, 0.0f, nullptr);
}
/** Test that the matrix is orthogonal for a range of inputs close to -Y. */