Cleanup: clang tidy

This commit is contained in:
Jacques Lucke 2020-12-11 19:02:09 +01:00
parent cef5d0923b
commit b73ed882c0
1 changed files with 1 additions and 1 deletions

View File

@ -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: