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 10b1c29 commit 21edd38Copy full SHA for 21edd38
clang-tools-extra/clang-doc/HTMLGenerator.cpp
@@ -457,7 +457,7 @@ writeFileDefinition(const Location &L,
457
Node->Children.emplace_back(std::make_unique<TextNode>(" of file "));
458
auto LocFileNode = std::make_unique<TagNode>(
459
HTMLTag::TAG_A, llvm::sys::path::filename(FileURL));
460
- LocFileNode->Attributes.emplace_back("href", std::string(FileURL.str()));
+ LocFileNode->Attributes.emplace_back("href", std::string(FileURL));
461
Node->Children.emplace_back(std::move(LocFileNode));
462
return Node;
463
}
0 commit comments