From 049b017c5dfafa26f01dbde87f62d97994665f3c Mon Sep 17 00:00:00 2001 From: Alex Turbov Date: Tue, 23 Aug 2022 06:17:56 +0400 Subject: cmDocumentation.cxx: Use anonymous namespace instead of `static` --- Source/cmDocumentation.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index d466a12..abb349f 100644 --- a/Source/cmDocumentation.cxx +++ b/Source/cmDocumentation.cxx @@ -16,7 +16,8 @@ #include "cmSystemTools.h" #include "cmVersion.h" -static const char* cmDocumentationStandardOptions[][2] = { +namespace { +const char* cmDocumentationStandardOptions[][2] = { { "-h,-H,--help,-help,-usage,/?", "Print usage information and exit." }, { "--version,-version,/V []", "Print version number and exit." }, { "--help-full []", "Print all help manuals and exit." }, @@ -46,17 +47,18 @@ static const char* cmDocumentationStandardOptions[][2] = { { nullptr, nullptr } }; -static const char* cmDocumentationCPackGeneratorsHeader[][2] = { +const char* cmDocumentationCPackGeneratorsHeader[][2] = { { nullptr, "The following generators are available on this platform:" }, { nullptr, nullptr } }; -static const char* cmDocumentationCMakeGeneratorsHeader[][2] = { +const char* cmDocumentationCMakeGeneratorsHeader[][2] = { { nullptr, "The following generators are available on this platform (* marks " "default):" }, { nullptr, nullptr } }; +} // anonymous namespace cmDocumentation::cmDocumentation() { -- cgit v0.12