summaryrefslogtreecommitdiffstats
path: root/src/htmlentity.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-01-07 20:30:48 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-01-22 20:45:19 (GMT)
commitc1e12d9b9b3a9699765a0e8b17ac8145858afed4 (patch)
treee55b7315a8ba22cae5b0ccd887537ee48ebc3854 /src/htmlentity.h
parentcc0baded768470a2569e71a08aafce791db83205 (diff)
downloadDoxygen-c1e12d9b9b3a9699765a0e8b17ac8145858afed4.zip
Doxygen-c1e12d9b9b3a9699765a0e8b17ac8145858afed4.tar.gz
Doxygen-c1e12d9b9b3a9699765a0e8b17ac8145858afed4.tar.bz2
Refactoring: modernize HtmlEntity::m_name2sym
Diffstat (limited to 'src/htmlentity.h')
-rw-r--r--src/htmlentity.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/htmlentity.h b/src/htmlentity.h
index 7e54066..5337280 100644
--- a/src/htmlentity.h
+++ b/src/htmlentity.h
@@ -15,7 +15,9 @@
#ifndef HTMLENTITY_H
#define HTMLENTITY_H
-#include <qdict.h>
+#include <unordered_map>
+#include <string>
+
#include "docparser.h"
class FTextStream;
@@ -41,7 +43,7 @@ class HtmlEntityMapper
HtmlEntityMapper();
~HtmlEntityMapper();
static HtmlEntityMapper *s_instance;
- QDict<int> *m_name2sym;
+ std::unordered_map<std::string,DocSymbol::SymType> m_name2sym;
};
#endif