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 ece8eb9 commit dbb68caCopy full SHA for dbb68ca
src/main.cpp
@@ -48,6 +48,8 @@
48
#include <mutex>
49
#include <string>
50
51
+#include <clang/Tooling/JSONCompilationDatabase.h>
52
+
53
using namespace clang::ast_matchers;
54
using namespace clang::tooling;
55
using namespace clang;
@@ -104,8 +106,9 @@ enum OutputFormatTy {
104
106
105
107
static llvm::cl::opt<OutputFormatTy>
108
FormatEnum("format", llvm::cl::desc("Format for outputted docs."),
- llvm::cl::values(clEnumValN(OutputFormatTy::yaml, "yaml",
- "Documentation in YAML format."),
109
+ llvm::cl::values(
110
+ clEnumValN(OutputFormatTy::yaml, "yaml",
111
+ "Documentation in YAML format."),
112
clEnumValN(OutputFormatTy::md, "md",
113
"Documentation in MD format."),
114
clEnumValN(OutputFormatTy::adoc, "adoc",
0 commit comments