Skip to content

Commit 631b7f8

Browse files
committed
[clang-doc] Default to Mustache HTML generation
1 parent 2147640 commit 631b7f8

23 files changed

+384
-2622
lines changed

clang-tools-extra/clang-doc/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ add_clang_library(clangDoc STATIC
1616
Representation.cpp
1717
Serialize.cpp
1818
YAMLGenerator.cpp
19-
HTMLMustacheGenerator.cpp
2019
JSONGenerator.cpp
2120

2221
DEPENDS

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,6 @@ void Generator::addInfoToIndex(Index &Idx, const doc::Info *Info) {
239239
[[maybe_unused]] static int YAMLGeneratorAnchorDest = YAMLGeneratorAnchorSource;
240240
[[maybe_unused]] static int MDGeneratorAnchorDest = MDGeneratorAnchorSource;
241241
[[maybe_unused]] static int HTMLGeneratorAnchorDest = HTMLGeneratorAnchorSource;
242-
[[maybe_unused]] static int MHTMLGeneratorAnchorDest =
243-
MHTMLGeneratorAnchorSource;
244242
[[maybe_unused]] static int JSONGeneratorAnchorDest = JSONGeneratorAnchorSource;
245243
} // namespace doc
246244
} // namespace clang

clang-tools-extra/clang-doc/Generators.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ struct MustacheGenerator : public Generator {
137137
extern volatile int YAMLGeneratorAnchorSource;
138138
extern volatile int MDGeneratorAnchorSource;
139139
extern volatile int HTMLGeneratorAnchorSource;
140-
extern volatile int MHTMLGeneratorAnchorSource;
141140
extern volatile int JSONGeneratorAnchorSource;
142141

143142
} // namespace doc

0 commit comments

Comments
 (0)