Fix indentation of a code example in LibTooling's documentation.

llvm-svn: 200944
This commit is contained in:
James Dennett 2014-02-06 20:16:05 +00:00
parent 7524e090e9
commit 2220dfadda
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ version of this example tool is also checked into the clang tree at
int main(int argc, const char **argv) {
CommonOptionsParser OptionsParser(argc, argv, MyToolCategory);
ClangTool Tool(OptionsParser.getCompilations(),
OptionsParser.getSourcePathList());
OptionsParser.getSourcePathList());
return Tool.run(newFrontendActionFactory<clang::SyntaxOnlyAction>());
}