From 2bc825e5e3dbc93d19372de6a45f3b23e3162746 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 1 May 2014 20:04:39 +0000 Subject: [PATCH] Update documentation to match recent API change. newFrontendActionFactory now returns a unique_ptr. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207789 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LibASTMatchersTutorial.rst | 4 ++-- docs/LibTooling.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/LibASTMatchersTutorial.rst b/docs/LibASTMatchersTutorial.rst index 13749fbc41..1e88ec203c 100644 --- a/docs/LibASTMatchersTutorial.rst +++ b/docs/LibASTMatchersTutorial.rst @@ -153,7 +153,7 @@ documentation `_. CommonOptionsParser OptionsParser(argc, argv, MyToolCategory); ClangTool Tool(OptionsParser.getCompilations(), OptionsParser.getSourcePathList()); - return Tool.run(newFrontendActionFactory()); + return Tool.run(newFrontendActionFactory().get()); } And that's it! You can compile our new tool by running ninja from the @@ -299,7 +299,7 @@ And change ``main()`` to: MatchFinder Finder; Finder.addMatcher(LoopMatcher, &Printer); - return Tool.run(newFrontendActionFactory(&Finder)); + return Tool.run(newFrontendActionFactory(&Finder).get()); } Now, you should be able to recompile and run the code to discover for diff --git a/docs/LibTooling.rst b/docs/LibTooling.rst index 57f207f275..75ef6a0fe7 100644 --- a/docs/LibTooling.rst +++ b/docs/LibTooling.rst @@ -99,7 +99,7 @@ our ``FrontendAction`` over some code. For example, to run the // on. Thus, it takes a FrontendActionFactory as parameter. To create a // FrontendActionFactory from a given FrontendAction type, we call // newFrontendActionFactory(). - int result = Tool.run(newFrontendActionFactory()); + int result = Tool.run(newFrontendActionFactory().get()); Putting it together --- the first tool ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -136,7 +136,7 @@ version of this example tool is also checked into the clang tree at CommonOptionsParser OptionsParser(argc, argv, MyToolCategory); ClangTool Tool(OptionsParser.getCompilations(), OptionsParser.getSourcePathList()); - return Tool.run(newFrontendActionFactory()); + return Tool.run(newFrontendActionFactory().get()); } Running the tool on some code -- 2.40.0