[Bf-blender-cvs] [e98ef47ed39] master: Cleanup: Argument wrapping

Sergey Sharybin noreply at git.blender.org
Fri Feb 15 10:56:56 CET 2019


Commit: e98ef47ed39777c7aea9ed4ed1fae294f7cd4f0f
Author: Sergey Sharybin
Date:   Fri Feb 15 10:52:53 2019 +0100
Branches: master
https://developer.blender.org/rBe98ef47ed39777c7aea9ed4ed1fae294f7cd4f0f

Cleanup: Argument wrapping

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

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 fd254d6ad3b..53697a8aabd 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -497,7 +497,8 @@ void deg_graph_on_visible_update(Main *bmain, Depsgraph *graph)
 		graph_id_tag_update(bmain,
 		                    graph,
 		                    id_node->id_orig,
-		                    flag, DEG_UPDATE_SOURCE_VISIBILITY);
+		                    flag,
+		                    DEG_UPDATE_SOURCE_VISIBILITY);
 		if (id_type == ID_SCE) {
 			/* Make sure collection properties are up to date. */
 			id_node->tag_update(graph, DEG_UPDATE_SOURCE_VISIBILITY);



More information about the Bf-blender-cvs mailing list