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-02-19 02:53:08 +0300
committerHans Goudey <h.goudey@me.com>2021-02-19 02:53:08 +0300
commita7c1aa245fc9d5f4e40437184764044aca5b8809 (patch)
tree0e131862e037a8deb9597ad04f925f3fe9354c06 /source/blender/blenkernel/BKE_node_ui_storage.hh
parent27fd066baf5531be178534f4d541bc457b94da1f (diff)
Cleanup: Remove type from global namespace in C++ header
Diffstat (limited to 'source/blender/blenkernel/BKE_node_ui_storage.hh')
-rw-r--r--source/blender/blenkernel/BKE_node_ui_storage.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_node_ui_storage.hh b/source/blender/blenkernel/BKE_node_ui_storage.hh
index ac12999731a..217f204f7bd 100644
--- a/source/blender/blenkernel/BKE_node_ui_storage.hh
+++ b/source/blender/blenkernel/BKE_node_ui_storage.hh
@@ -29,8 +29,6 @@ struct Object;
struct bNode;
struct bNodeTree;
-using blender::Map;
-
/**
* Contains the context necessary to determine when to display settings for a certain node tree
* that may be used for multiple modifiers and objects. The object name and modifier session UUID
@@ -80,7 +78,7 @@ struct NodeUIStorage {
};
struct NodeTreeUIStorage {
- Map<NodeTreeEvaluationContext, Map<std::string, NodeUIStorage>> context_map;
+ blender::Map<NodeTreeEvaluationContext, blender::Map<std::string, NodeUIStorage>> context_map;
};
void BKE_nodetree_ui_storage_free_for_context(bNodeTree &ntree,