[Bf-blender-cvs] [b667020310f] master: Depsgraph: Cleanup, brace placement\

Sergey Sharybin noreply at git.blender.org
Tue Jan 16 11:39:09 CET 2018


Commit: b667020310fe28e66e86513dda5461f1e0c86e82
Author: Sergey Sharybin
Date:   Tue Jan 16 11:38:44 2018 +0100
Branches: master
https://developer.blender.org/rBb667020310fe28e66e86513dda5461f1e0c86e82

Depsgraph: Cleanup, brace placement\

===================================================================

M	source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h

===================================================================

diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h b/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h
index ba55a83b767..d3f0f01772f 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h
@@ -142,7 +142,8 @@ bool DepsgraphRelationBuilder::is_same_bone_dependency(const KeyFrom& key_from,
 	}
 	/* We are only interested in relations like BONE_DONE -> BONE_LOCAL... */
 	if (!(op_from->opcode == DEG_OPCODE_BONE_DONE &&
-	      op_to->opcode == DEG_OPCODE_BONE_LOCAL)) {
+	      op_to->opcode == DEG_OPCODE_BONE_LOCAL))
+	{
 		return false;
 	}
 	/* ... BUT, we also need to check if it's same bone.  */



More information about the Bf-blender-cvs mailing list