summaryrefslogtreecommitdiffstats
path: root/src/doxygen.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-04-18 11:45:40 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-04-18 11:45:40 (GMT)
commit28fc7d1fce3cc8e7fa26e3760e8d8d79b9dd23a5 (patch)
tree3104ca2ea1f3e3f94cb54c99f8dde84745b497c2 /src/doxygen.h
parentf3ebc866c88b31ab393637e30189d41ddb7f84f0 (diff)
downloadDoxygen-28fc7d1fce3cc8e7fa26e3760e8d8d79b9dd23a5.zip
Doxygen-28fc7d1fce3cc8e7fa26e3760e8d8d79b9dd23a5.tar.gz
Doxygen-28fc7d1fce3cc8e7fa26e3760e8d8d79b9dd23a5.tar.bz2
Refactoring: changed Doxygen::expandAsDefinedDict to Doxygen::expandAsDefinedSet
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 a18ac3b..d04b0b3 100644
--- a/src/doxygen.h
+++ b/src/doxygen.h
@@ -22,6 +22,8 @@
#include <qdict.h>
#include <qintdict.h>
+#include <unordered_set>
+
#include "ftextstream.h"
#include "sortdict.h"
#include "membergroup.h"
@@ -114,7 +116,7 @@ class Doxygen
static StringDict tagDestinationDict;
static StringDict aliasDict;
static QIntDict<MemberGroupInfo> memGrpInfoDict;
- static QDict<void> expandAsDefinedDict;
+ static std::unordered_set<std::string> expandAsDefinedSet;
static NamespaceDef *globalScope;
static QCString htmlFileExtension;
static bool parseSourcesNeeded;