]> granicus.if.org Git - clang/commitdiff
Fix indentation of a code example in LibTooling's documentation.
authorJames Dennett <jdennett@google.com>
Thu, 6 Feb 2014 20:16:05 +0000 (20:16 +0000)
committerJames Dennett <jdennett@google.com>
Thu, 6 Feb 2014 20:16:05 +0000 (20:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200944 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LibTooling.rst

index 6fba98627a9c325c68aad29346c5fd85385f4acf..57f207f275c92e27996fdcaebf910d0df46cce26 100644 (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>());
   }