Skip to content

Commit 8e4cc0c

Browse files
committed
Fix for failing test case 106 (RTF output check)
1 parent 4a8f03a commit 8e4cc0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/classdef.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
)

src/rtfgen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)