Skip to content

Commit dbb68ca

Browse files
committed
tidy
1 parent ece8eb9 commit dbb68ca

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848
#include <mutex>
4949
#include <string>
5050

51+
#include <clang/Tooling/JSONCompilationDatabase.h>
52+
5153
using namespace clang::ast_matchers;
5254
using namespace clang::tooling;
5355
using namespace clang;
@@ -104,8 +106,9 @@ enum OutputFormatTy {
104106

105107
static llvm::cl::opt<OutputFormatTy>
106108
FormatEnum("format", llvm::cl::desc("Format for outputted docs."),
107-
llvm::cl::values(clEnumValN(OutputFormatTy::yaml, "yaml",
108-
"Documentation in YAML format."),
109+
llvm::cl::values(
110+
clEnumValN(OutputFormatTy::yaml, "yaml",
111+
"Documentation in YAML format."),
109112
clEnumValN(OutputFormatTy::md, "md",
110113
"Documentation in MD format."),
111114
clEnumValN(OutputFormatTy::adoc, "adoc",

0 commit comments

Comments
 (0)