File tree 2 files changed +3
-9
lines changed 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -635,8 +635,8 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
635
635
636
636
if (I.Kind == " BlockCommandComment" ) {
637
637
auto BlockComment = std::make_unique<TagNode>(HTMLTag::TAG_DIV);
638
- auto Command = std::make_unique<TagNode>(HTMLTag::TAG_DIV, I. Name );
639
- BlockComment-> Children . emplace_back ( std::move (Command ));
638
+ BlockComment-> Children . emplace_back (
639
+ std::make_unique<TagNode>(HTMLTag::TAG_DIV, I. Name ));
640
640
for (const auto &Child : I.Children ) {
641
641
std::unique_ptr<HTMLNode> Node = genHTML (*Child);
642
642
if (Node)
Original file line number Diff line number Diff line change @@ -92,13 +92,7 @@ TEST(HTMLGeneratorTest, emitNamespaceHTML) {
92
92
</div>
93
93
<h2 id="Enums">Enums</h2>
94
94
<div>
95
- <table id=\"0000000000000000000000000000000000000000\">
96
- <thead>
97
- <tr>
98
- <th colspan=\"2\">enum OneEnum</th>
99
- </tr>
100
- </thead>
101
- </table>
95
+ <h3 id="0000000000000000000000000000000000000000">enum OneEnum</h3>
102
96
</div>
103
97
</div>
104
98
<div id="sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
You can’t perform that action at this time.
0 commit comments