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-12-11 21:02:09 +0300
committerJacques Lucke <jacques@blender.org>2020-12-11 21:02:46 +0300
commitb73ed882c0d0dd3b4fed652e06240b0d705f3f80 (patch)
treeeba6854ccdaaa62a025198260a135e8d8269b3c4 /source/blender/io
parentcef5d0923b79d693828607b8775c3e73c421e093 (diff)
Cleanup: clang tidy
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/common/intern/abstract_hierarchy_iterator_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/io/common/intern/abstract_hierarchy_iterator_test.cc b/source/blender/io/common/intern/abstract_hierarchy_iterator_test.cc
index 8acdba416d3..457d68953ff 100644
--- a/source/blender/io/common/intern/abstract_hierarchy_iterator_test.cc
+++ b/source/blender/io/common/intern/abstract_hierarchy_iterator_test.cc
@@ -36,7 +36,7 @@ namespace {
/* Mapping from ID.name to set of export hierarchy path. Duplicated objects can be exported
* multiple times with different export paths, hence the set. */
-typedef std::map<std::string, std::set<std::string>> used_writers;
+using used_writers = std::map<std::string, std::set<std::string>>;
class TestHierarchyWriter : public AbstractHierarchyWriter {
public: