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:
authorJacques Lucke <jacques@blender.org>2020-04-29 12:37:19 +0300
committerJacques Lucke <jacques@blender.org>2020-04-29 12:37:19 +0300
commit157f8364935402aed8024a2bd90348662fbb49b3 (patch)
treed87c08fd3d191d478ce50a321fdf54c6aaf1d7a7 /source/blender/depsgraph/intern/depsgraph_registry.h
parent657188c1a240eececd4aec95f97fe1b96c140070 (diff)
Depsgraph: use native BLI data structures in registry
Reviewers: sergey Differential Revision: https://developer.blender.org/D7559
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_registry.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_registry.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_registry.h b/source/blender/depsgraph/intern/depsgraph_registry.h
index 7517b6a0b2a..f8e5b9543f2 100644
--- a/source/blender/depsgraph/intern/depsgraph_registry.h
+++ b/source/blender/depsgraph/intern/depsgraph_registry.h
@@ -33,6 +33,6 @@ struct Depsgraph;
void register_graph(Depsgraph *depsgraph);
void unregister_graph(Depsgraph *depsgraph);
-const set<Depsgraph *> &get_all_registered_graphs(Main *bmain);
+ArrayRef<Depsgraph *> get_all_registered_graphs(Main *bmain);
} // namespace DEG