From: Alexander Kornienko Date: Wed, 19 Feb 2014 16:11:38 +0000 (+0000) Subject: Updated tutorial code according to the changes in r197139. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8785edcaa698844e989c9339faf92cf1e106af8a;p=clang Updated tutorial code according to the changes in r197139. Thanks to Konrad Kleine for reporting the inconsistency! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201693 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersTutorial.rst b/docs/LibASTMatchersTutorial.rst index 5bd62a1336..13749fbc41 100644 --- a/docs/LibASTMatchersTutorial.rst +++ b/docs/LibASTMatchersTutorial.rst @@ -137,6 +137,10 @@ documentation `_. using namespace clang::tooling; using namespace llvm; + // Apply a custom category to all command-line options so that they are the + // only ones displayed. + static llvm::cl::OptionCategory MyToolCategory("my-tool options"); + // CommonOptionsParser declares HelpMessage with a description of the common // command-line options related to the compilation database and input files. // It's nice to have this help message in all tools. @@ -146,7 +150,7 @@ documentation `_. static cl::extrahelp MoreHelp("\nMore help text..."); int main(int argc, const char **argv) { - CommonOptionsParser OptionsParser(argc, argv); + CommonOptionsParser OptionsParser(argc, argv, MyToolCategory); ClangTool Tool(OptionsParser.getCompilations(), OptionsParser.getSourcePathList()); return Tool.run(newFrontendActionFactory()); @@ -287,7 +291,7 @@ And change ``main()`` to: .. code-block:: c++ int main(int argc, const char **argv) { - CommonOptionsParser OptionsParser(argc, argv); + CommonOptionsParser OptionsParser(argc, argv, MyToolCategory); ClangTool Tool(OptionsParser.getCompilations(), OptionsParser.getSourcePathList());