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

James Dennett jdennett at google.com
Thu Feb 6 12:16:06 PST 2014


Author: jdennett
Date: Thu Feb  6 14:16:05 2014
New Revision: 200944

URL: http://llvm.org/viewvc/llvm-project?rev=200944&view=rev
Log:
Fix indentation of a code example in LibTooling's documentation.

Modified:
    cfe/trunk/docs/LibTooling.rst

Modified: cfe/trunk/docs/LibTooling.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LibTooling.rst?rev=200944&r1=200943&r2=200944&view=diff
==============================================================================
--- cfe/trunk/docs/LibTooling.rst (original)
+++ cfe/trunk/docs/LibTooling.rst Thu Feb  6 14:16:05 2014
@@ -135,7 +135,7 @@ version of this example tool is also che
   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>());
   }
 





More information about the cfe-commits mailing list