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
path: root/source
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-03-06 18:54:09 +0300
committerJacques Lucke <jacques@blender.org>2021-03-06 18:54:09 +0300
commit9828882b8e7450e712865b067d64a793e18a3383 (patch)
tree27d3c3937578f1c9aa95108a2e7fa6dc685c6bce /source
parentd2869943d2c02f1535270f0e206a67aab78c8ebb (diff)
Cleanup: clang tidy
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/armature_pose.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/armature_pose.cc b/source/blender/blenkernel/intern/armature_pose.cc
index a9613da2335..bb371b16c42 100644
--- a/source/blender/blenkernel/intern/armature_pose.cc
+++ b/source/blender/blenkernel/intern/armature_pose.cc
@@ -50,7 +50,7 @@ void BKE_pose_apply_action(struct Object *ob,
struct AnimationEvalContext *anim_eval_context)
{
bPose *pose = ob->pose;
- if (pose == NULL) {
+ if (pose == nullptr) {
return;
}