File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2354,7 +2354,7 @@ void ClassDefImpl::writeTagFile(TextStream &tagFile) const
23542354 {
23552355 for (const auto &innerCd : m_innerClasses)
23562356 {
2357- if (innerCd->isLinkableInProject () && innerCd->templateMaster ()== nullptr &&
2357+ if (innerCd->isLinkableInProject () && ! innerCd->isImplicitTemplateInstance () &&
23582358 protectionLevelVisible (innerCd->protection ()) &&
23592359 !innerCd->isEmbeddedInOuterScope ()
23602360 )
Original file line number Diff line number Diff line change @@ -1201,7 +1201,7 @@ void RTFGenerator::endIndexSection(IndexSection is)
12011201 for (const auto &cd : *Doxygen::classLinkedMap)
12021202 {
12031203 if (cd->isLinkableInProject () &&
1204- cd->templateMaster ()== nullptr &&
1204+ ! cd->isImplicitTemplateInstance () &&
12051205 !cd->isEmbeddedInOuterScope () &&
12061206 !cd->isAlias ()
12071207 )
You can’t perform that action at this time.
0 commit comments