summaryrefslogtreecommitdiffstats
path: root/src/doxygen.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-01-01 10:47:41 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-01-01 10:47:41 (GMT)
commit3867926d7162704c8232af95316dbc14e313f9c3 (patch)
tree20fbd3878404a7b15474e9c5e752ae4b6b36160a /src/doxygen.h
parenteec3c9ab5eb881d596b489f1f6024e4ac29f23ce (diff)
downloadDoxygen-3867926d7162704c8232af95316dbc14e313f9c3.zip
Doxygen-3867926d7162704c8232af95316dbc14e313f9c3.tar.gz
Doxygen-3867926d7162704c8232af95316dbc14e313f9c3.tar.bz2
Refactoring: modernise Doxygen::clangUsrMap
Diffstat (limited to 'src/doxygen.h')
-rw-r--r--src/doxygen.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/doxygen.h b/src/doxygen.h
index 2ce27bd..b174698 100644
--- a/src/doxygen.h
+++ b/src/doxygen.h
@@ -85,9 +85,7 @@ struct LookupInfo
QCString resolvedType;
};
-extern QCString g_spaces;
-
-using MemberGroupInfoMap = std::unordered_map< int,std::unique_ptr<MemberGroupInfo> >;
+using ClangUsrMap = std::unordered_map<std::string,const Definition *>;
/*! \brief This class serves as a namespace for global variables used by doxygen.
*
@@ -124,7 +122,7 @@ class Doxygen
static bool parseSourcesNeeded;
static SearchIndexIntf *searchIndex;
static SymbolMap<Definition> symbolMap;
- static QDict<Definition> *clangUsrMap;
+ static ClangUsrMap *clangUsrMap;
static bool outputToWizard;
static Cache<std::string,LookupInfo> *lookupCache;
static DirLinkedMap *dirLinkedMap;