[clang-tools-extra] [clang-doc] add support for enums comments in html generation (PR #101282)
Paul Kirth via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 12 16:18:45 PDT 2024
================
@@ -716,8 +774,8 @@ genHTML(const FunctionInfo &I, const ClangDocContext &CDCtx,
if (!CDCtx.RepositoryUrl)
Out.emplace_back(writeFileDefinition(*I.DefLoc));
else
- Out.emplace_back(writeFileDefinition(
- *I.DefLoc, StringRef{*CDCtx.RepositoryUrl}));
+ Out.emplace_back(
+ writeFileDefinition(*I.DefLoc, StringRef{*CDCtx.RepositoryUrl}));
----------------
ilovepi wrote:
nit: This and the similar change below seem unrelated to this patch.
https://github.com/llvm/llvm-project/pull/101282
More information about the cfe-commits
mailing list