summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-23 18:42:11 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-23 18:42:11 (GMT)
commit3dc8e67a9bb5f08460bf1f56853266db71569919 (patch)
treeb58ba0efc8a5735620f5ded9cce02c55388f12aa /src
parenteb8b6f40d863a8d7d2798a95cbde4200e27d4945 (diff)
downloadDoxygen-3dc8e67a9bb5f08460bf1f56853266db71569919.zip
Doxygen-3dc8e67a9bb5f08460bf1f56853266db71569919.tar.gz
Doxygen-3dc8e67a9bb5f08460bf1f56853266db71569919.tar.bz2
Regression: Members of template instances were no longer outputted
Diffstat (limited to 'src')
-rw-r--r--src/classdef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index ff39e29..53d758e 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -4036,7 +4036,7 @@ ClassDef *ClassDefImpl::insertTemplateInstance(const QCString &fileName,
Debug::print(Debug::Classes,0," New template instance class '%s''%s' inside '%s' hidden=%d\n",qPrint(name()),qPrint(templSpec),qPrint(name()),isHidden());
templateClass =
toClassDefMutable(
- Doxygen::hiddenClassLinkedMap->add(tcname,
+ Doxygen::classLinkedMap->add(tcname,
std::unique_ptr<ClassDef>(
new ClassDefImpl(fileName,startLine,startColumn,tcname,ClassDef::Class))));
templateClass->setTemplateMaster(this);