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:
authorHans Goudey <h.goudey@me.com>2021-08-27 07:41:41 +0300
committerHans Goudey <h.goudey@me.com>2021-08-27 07:41:41 +0300
commita0f754e7749a485c97718433edbbab5ac76cdc7a (patch)
treed968d66e73be6dbac5997a3f5bb8e33e462c96d3 /source/blender/depsgraph/intern/depsgraph_registry.cc
parent137a5e162c2435662dbb299ff49771e7d2e7598f (diff)
parent523bc981cfeecead5050e7af44bbe252c166d718 (diff)
Merge branch 'master' into refactor-idprop-ui-datarefactor-idprop-ui-data
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_registry.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_registry.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_registry.cc b/source/blender/depsgraph/intern/depsgraph_registry.cc
index f348ef6e6e9..cc9fcf78292 100644
--- a/source/blender/depsgraph/intern/depsgraph_registry.cc
+++ b/source/blender/depsgraph/intern/depsgraph_registry.cc
@@ -49,7 +49,7 @@ void unregister_graph(Depsgraph *depsgraph)
VectorSet<Depsgraph *> &graphs = graph_registry.lookup(bmain);
graphs.remove(depsgraph);
- // If this was the last depsgraph associated with the main, remove the main entry as well.
+ /* If this was the last depsgraph associated with the main, remove the main entry as well. */
if (graphs.is_empty()) {
graph_registry.remove(bmain);
}