summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-23 15:07:03 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-23 15:07:03 (GMT)
commit11f0c2e3735e4736a5ade8468a356ebc2fc2840d (patch)
tree595cf6bff7cb285959a2e84c145eac82522ea974 /src/code.l
parentbf5c2ac20e42f440ae0199d4d809b9d5e7e22191 (diff)
downloadDoxygen-11f0c2e3735e4736a5ade8468a356ebc2fc2840d.zip
Doxygen-11f0c2e3735e4736a5ade8468a356ebc2fc2840d.tar.gz
Doxygen-11f0c2e3735e4736a5ade8468a356ebc2fc2840d.tar.bz2
Refactoring: replace NamespaceSDict by NamespaceLinkedMap
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code.l b/src/code.l
index df4dd53..94a7bcd 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2530,7 +2530,7 @@ static void addUsingDirective(yyscan_t yyscanner,const char *name)
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
if (yyextra->sourceFileDef && name)
{
- const NamespaceDef *nd = Doxygen::namespaceSDict->find(name);
+ const NamespaceDef *nd = Doxygen::namespaceLinkedMap->find(name);
if (nd)
{
yyextra->sourceFileDef->addUsingDirective(nd);