Skip to content

Commit 331c786

Browse files
committed
fix: building error in HTMLGeneratorTest.cpp
1 parent af71ae8 commit 331c786

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

clang-tools-extra/unittests/clang-doc/HTMLGeneratorTest.cpp

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,16 @@ std::unique_ptr<Generator> getHTMLGenerator() {
2828

2929
ClangDocContext
3030
getClangDocContext(std::vector<std::string> UserStylesheets = {},
31-
StringRef RepositoryUrl = "") {
32-
ClangDocContext CDCtx{
33-
{}, "test-project", {}, {}, {}, RepositoryUrl, UserStylesheets};
31+
StringRef RepositoryUrl = "",
32+
StringRef RepositoryLinePrefix = "") {
33+
ClangDocContext CDCtx{{},
34+
"test-project",
35+
{},
36+
{},
37+
{},
38+
RepositoryUrl,
39+
RepositoryLinePrefix,
40+
UserStylesheets};
3441
CDCtx.UserStylesheets.insert(
3542
CDCtx.UserStylesheets.begin(),
3643
"../share/clang/clang-doc-default-stylesheet.css");

0 commit comments

Comments
 (0)