From 4fa81df4558833c70b85525cf0f677ce7897b915 Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Wed, 5 Feb 2014 21:28:03 +0000 Subject: Changed OptionCategory variables to be static. llvm-svn: 200876 --- clang/docs/LibTooling.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/docs/LibTooling.rst') diff --git a/clang/docs/LibTooling.rst b/clang/docs/LibTooling.rst index d8432af6207..6fba98627a9 100644 --- a/clang/docs/LibTooling.rst +++ b/clang/docs/LibTooling.rst @@ -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. -- cgit v1.2.3