We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8323335 commit 08a50bdCopy full SHA for 08a50bd
clang-tools-extra/clang-doc/HTMLGenerator.cpp
@@ -692,9 +692,8 @@ genHTML(const EnumInfo &I, const ClangDocContext &CDCtx) {
692
std::vector<std::unique_ptr<TagNode>> Out;
693
std::string EnumType = I.Scoped ? "enum class " : "enum ";
694
// Determine if enum members have comments attached
695
- bool HasComments = std::any_of(
696
- I.Members.begin(), I.Members.end(),
697
- [](const EnumValueInfo &M) { return !M.Description.empty(); });
+ bool HasComments = llvm::any_of(
+ I.Members, [](const EnumValueInfo &M) { return !M.Description.empty(); });
698
std::unique_ptr<TagNode> Table =
699
std::make_unique<TagNode>(HTMLTag::TAG_TABLE);
700
std::unique_ptr<TagNode> THead =
0 commit comments