diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-11-16 20:25:05 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2020-11-16 20:25:05 (GMT) |
commit | af8465e5e2ad2474e520e47ae699389c545236a2 (patch) | |
tree | d3bc6c47c30fc0a7ae0981dfb3b5cfcb6879c05e | |
parent | 88fa344260802ddbbc7e248c7b4ca9fe66877815 (diff) | |
download | Doxygen-af8465e5e2ad2474e520e47ae699389c545236a2.zip Doxygen-af8465e5e2ad2474e520e47ae699389c545236a2.tar.gz Doxygen-af8465e5e2ad2474e520e47ae699389c545236a2.tar.bz2 |
Fixed issue in dotgfxhierarchytable
-rw-r--r-- | src/dotgfxhierarchytable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotgfxhierarchytable.h b/src/dotgfxhierarchytable.h index 2076472..0d884bd 100644 --- a/src/dotgfxhierarchytable.h +++ b/src/dotgfxhierarchytable.h @@ -46,7 +46,7 @@ class DotGfxHierarchyTable : public DotGraph void addHierarchy(DotNode *n,const ClassDef *cd,ClassDefSet &visited); void addClassList(const ClassSDict *cl,ClassDefSet &visited); - using DotNodeMap = std::unordered_map< std::string, std::unique_ptr<DotNode> >; + using DotNodeMap = std::unordered_multimap< std::string, std::unique_ptr<DotNode> >; int m_graphId; QCString m_prefix; ClassDef::CompoundType m_classType; |