diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-08-24 04:41:41 (GMT) |
---|---|---|
committer | Alex Turbov <i.zaufi@gmail.com> | 2022-11-17 12:37:12 (GMT) |
commit | 69918b07e17cce822ad8f11950da476c42e419ee (patch) | |
tree | 2dec5b12c0b4e3702dbdc31b5bee1b72e21ad8e6 /Source/cmakemain.cxx | |
parent | 439d2cf9cb79884747b3d3d56f83b044a108c40a (diff) | |
download | CMake-69918b07e17cce822ad8f11950da476c42e419ee.zip CMake-69918b07e17cce822ad8f11950da476c42e419ee.tar.gz CMake-69918b07e17cce822ad8f11950da476c42e419ee.tar.bz2 |
cmDocumentationEntry: Drop all user provided ctors for C++ >= 14
There is no need for them cuz:
- the last field has a default value
- all static instances use 2 arguments convertible to `std::string`
- "dynamic" instances used for _Generator_ doc entries access
fields diectly using default constructed instance
Moreover, compiler may generate move ctor/assign when needed.
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 1ca3e55..a155787 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -47,22 +47,24 @@ namespace { #ifndef CMAKE_BOOTSTRAP const cmDocumentationEntry cmDocumentationName = { - nullptr, " cmake - Cross-Platform Makefile Generator." + {}, + " cmake - Cross-Platform Makefile Generator." }; const cmDocumentationEntry cmDocumentationUsage[2] = { - { nullptr, + { {}, " cmake [options] <path-to-source>\n" " cmake [options] <path-to-existing-build>\n" " cmake [options] -S <path-to-source> -B <path-to-build>" }, - { nullptr, + { {}, "Specify a source directory to (re-)generate a build system for " "it in the current working directory. Specify an existing build " "directory to re-generate its build system." } }; const cmDocumentationEntry cmDocumentationUsageNote = { - nullptr, "Run 'cmake --help' for more information." + {}, + "Run 'cmake --help' for more information." }; const cmDocumentationEntry cmDocumentationOptions[31] = { |