Skip to content

Commit

Permalink
tidy up flat writers
Browse files Browse the repository at this point in the history
  • Loading branch information
vinniefalco committed Apr 16, 2023
1 parent 1dd7055 commit 0753882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/lib/format/FlatWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ visit(
switch(I.IT)
{
case InfoType::IT_namespace:
visit(*static_cast<NamespaceInfo const*>(&I));
//visit(*static_cast<NamespaceInfo const*>(&I));
break;
case InfoType::IT_record:
visit(*static_cast<RecordInfo const*>(&I));
Expand Down
2 changes: 1 addition & 1 deletion source/lib/format/XML.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,10 @@ writeJavadoc(Javadoc const& jd)
adjustNesting(1);
if(auto brief = jd.getBrief())
writeBrief(brief);
writeNodes(jd.getBlocks());
writeReturns(jd.getReturns());
writeNodes(jd.getParams());
writeNodes(jd.getTParams());
writeNodes(jd.getBlocks());
adjustNesting(-1);
closeTag("doc");
}
Expand Down

0 comments on commit 0753882

Please sign in to comment.