summaryrefslogtreecommitdiffstats
path: root/src/doxygen.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-30 14:07:32 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-30 14:07:32 (GMT)
commit34ac30b4e46023e0c86247dac4d47fce0ae1d4f8 (patch)
tree828e02737ed1f696f19b6369a1ae5e115109ef28 /src/doxygen.h
parentefa76fb818ff37ed2bde1675a11d36dc852727e5 (diff)
downloadDoxygen-34ac30b4e46023e0c86247dac4d47fce0ae1d4f8.zip
Doxygen-34ac30b4e46023e0c86247dac4d47fce0ae1d4f8.tar.gz
Doxygen-34ac30b4e46023e0c86247dac4d47fce0ae1d4f8.tar.bz2
Refactoring: replace Doxygen::memGrpInfoDict by Doxygen::memberGroupInfoMap
Diffstat (limited to 'src/doxygen.h')
-rw-r--r--src/doxygen.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/doxygen.h b/src/doxygen.h
index fb984f6..7f03f04 100644
--- a/src/doxygen.h
+++ b/src/doxygen.h
@@ -88,6 +88,8 @@ struct LookupInfo
extern QCString g_spaces;
+using MemberGroupInfoMap = std::unordered_map< int,std::unique_ptr<MemberGroupInfo> >;
+
/*! \brief This class serves as a namespace for global variables used by doxygen.
*
* All fields in this class are public and static, so they can be used directly.
@@ -116,7 +118,7 @@ class Doxygen
static NamespaceLinkedMap *namespaceLinkedMap;
static StringDict tagDestinationDict;
static StringDict aliasDict;
- static QIntDict<MemberGroupInfo> memGrpInfoDict;
+ static MemberGroupInfoMap memberGroupInfoMap;
static StringUnorderedSet expandAsDefinedSet;
static NamespaceDefMutable *globalScope;
static QCString htmlFileExtension;