]> granicus.if.org Git - clang/commitdiff
Changed OptionCategory variables to be static.
authorAlexander Kornienko <alexfh@google.com>
Wed, 5 Feb 2014 21:28:03 +0000 (21:28 +0000)
committerAlexander Kornienko <alexfh@google.com>
Wed, 5 Feb 2014 21:28:03 +0000 (21:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200876 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LibTooling.rst

index d8432af6207dd86ce64a1b01f4791431fe7d8751..6fba98627a9c325c68aad29346c5fd85385f4acf 100644 (file)
@@ -66,7 +66,7 @@ and automatic location of the compilation database using source files paths.
 
   // Apply a custom category to all command-line options so that they are the
   // only ones displayed.
-  llvm::cl::OptionCategory MyToolCategory("my-tool options");
+  static llvm::cl::OptionCategory MyToolCategory("my-tool options");
 
   int main(int argc, const char **argv) {
     // CommonOptionsParser constructor will parse arguments and create a
@@ -122,7 +122,7 @@ version of this example tool is also checked into the clang tree at
 
   // Apply a custom category to all command-line options so that they are the
   // only ones displayed.
-  cl::OptionCategory MyToolCategory("my-tool options");
+  static 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.