Skip to content

Commit

Permalink
Fixed problem where member attributes were not rendered properly
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Nov 21, 2021
1 parent a473d3b commit e321a87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/memberdef.cpp
Expand Up @@ -2402,8 +2402,8 @@ void MemberDefImpl::writeDeclaration(OutputList &ol,
if (!first)
{
ol.docify(", ");
first=false;
}
first=false;
ol.docify(s.c_str());
}
ol.docify("]");
Expand All @@ -2425,8 +2425,8 @@ void MemberDefImpl::writeDeclaration(OutputList &ol,
if (!first)
{
ol.docify(", ");
first=false;
}
first=false;
ol.docify(s.c_str());
}
ol.docify("]");
Expand Down
2 changes: 1 addition & 1 deletion src/reflist.cpp
Expand Up @@ -75,8 +75,8 @@ void RefList::generatePage()
if (!first)
{
doc += "</dd>";
first=false;
}
first=false;
doc += " <dt>";
doc += "\n";
if (item->scope())
Expand Down

0 comments on commit e321a87

Please sign in to comment.