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-28 12:37:44 +0300
committerJacques Lucke <jacques@blender.org>2020-04-28 12:39:49 +0300
commit7acc8a5a929b899bf0c0dd63bda4dd6b9c6c8aed (patch)
tree75326abfdf3f79e2b0628447475eda2033e3c015 /source/blender/depsgraph/intern/builder/deg_builder_rna.h
parent0372121e17f734d55fc156b2afbedcc31242f362 (diff)
Depsgraph: Use BLI::Map for RNANodeQuery.id_data_map_
Reviewers: sergey Differential Revision: https://developer.blender.org/D7512
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder_rna.h')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_rna.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_rna.h b/source/blender/depsgraph/intern/builder/deg_builder_rna.h
index 8a79d9abef9..e7e9e883e85 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_rna.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_rna.h
@@ -83,7 +83,7 @@ class RNANodeQuery {
DepsgraphBuilder *builder_;
/* Indexed by an ID, returns RNANodeQueryIDData associated with that ID. */
- GHash *id_data_map_;
+ Map<const ID *, unique_ptr<RNANodeQueryIDData>> id_data_map_;
/* Construct identifier of the node which corresponds given configuration
* of RNA property. */