[Bf-blender-cvs] [57f2cc918bd] blender2.8: Depsgraph: Cleanup, line length

Sergey Sharybin noreply at git.blender.org
Mon Dec 18 16:55:17 CET 2017


Commit: 57f2cc918bdc846a4f5a85b7cabe6952055a4870
Author: Sergey Sharybin
Date:   Mon Dec 18 16:55:04 2017 +0100
Branches: blender2.8
https://developer.blender.org/rB57f2cc918bdc846a4f5a85b7cabe6952055a4870

Depsgraph: Cleanup, line length

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

M	source/blender/depsgraph/intern/depsgraph_tag.cc

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

diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index ccec81e0c33..750d300f688 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -469,7 +469,10 @@ void deg_graph_on_visible_update(Main *bmain, Depsgraph *graph)
 		deg_graph_id_tag_update(bmain, graph, id_node->id_orig, flag);
 	}
 	/* Make sure collection properties are up to date. */
-	for (Scene *scene_iter = graph->scene; scene_iter != NULL; scene_iter = scene_iter->set) {
+	for (Scene *scene_iter = graph->scene;
+	     scene_iter != NULL;
+	     scene_iter = scene_iter->set)
+	{
 		IDDepsNode *scene_id_node = graph->find_id_node(&scene_iter->id);
 		BLI_assert(scene_id_node != NULL);
 		scene_id_node->tag_update(graph);



More information about the Bf-blender-cvs mailing list