Skip to content

Commit eb865bd

Browse files
committed
[clang-doc] fix formatting
1 parent e4c3554 commit eb865bd

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

clang-tools-extra/clang-doc/HTMLGenerator.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,6 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
620620
}
621621
return std::move(FullComment);
622622
}
623-
624623
if (I.Kind == "ParagraphComment") {
625624
auto ParagraphComment = std::make_unique<TagNode>(HTMLTag::TAG_P);
626625
for (const auto &Child : I.Children) {
@@ -632,7 +631,6 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
632631
return nullptr;
633632
return std::move(ParagraphComment);
634633
}
635-
636634
if (I.Kind == "BlockCommandComment") {
637635
auto BlockComment = std::make_unique<TagNode>(HTMLTag::TAG_DIV);
638636
auto Command = std::make_unique<TagNode>(HTMLTag::TAG_DIV, I.Name);
@@ -646,7 +644,6 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
646644
return nullptr;
647645
return std::move(BlockComment);
648646
}
649-
650647
if (I.Kind == "TextComment") {
651648
if (I.Text == "")
652649
return nullptr;

0 commit comments

Comments
 (0)