summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentationSection.cxx
diff options
context:
space:
mode:
authorAlex Turbov <i.zaufi@gmail.com>2022-08-23 17:39:53 (GMT)
committerAlex Turbov <i.zaufi@gmail.com>2022-11-17 12:37:11 (GMT)
commit74b735dea8e2255c53f12afea5706ad443d64785 (patch)
tree03933961bcaf525b00f2a27a3bc018fed503c40b /Source/cmDocumentationSection.cxx
parent807aa8e35382ab55120ccb1e6ae88523ad7ee5a3 (diff)
downloadCMake-74b735dea8e2255c53f12afea5706ad443d64785.zip
CMake-74b735dea8e2255c53f12afea5706ad443d64785.tar.gz
CMake-74b735dea8e2255c53f12afea5706ad443d64785.tar.bz2
cmDocumentation: `char*[][2]` → `cmDocumentationEntry[N]`
Use fixed size arrays of `cmDocumentationEntry` items instead of open arrays of two `char` pointers when describe program options help screens. Also, drop `const char*[][2]` overloads of methods of `cmDocumentation` and `cmDocumentationSection` classes in the sake of generic (template) appenders introduced earlier.
Diffstat (limited to 'Source/cmDocumentationSection.cxx')
-rw-r--r--Source/cmDocumentationSection.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/Source/cmDocumentationSection.cxx b/Source/cmDocumentationSection.cxx
deleted file mode 100644
index 439da1b..0000000
--- a/Source/cmDocumentationSection.cxx
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
-#include "cmDocumentationSection.h"
-
-void cmDocumentationSection::Append(const char* data[][2])
-{
- int i = 0;
- while (data[i][1]) {
- this->Entries.emplace_back(data[i][0], data[i][1]);
- data += 1;
- }
-}
-
-void cmDocumentationSection::Prepend(const char* data[][2])
-{
- std::vector<cmDocumentationEntry> tmp;
- int i = 0;
- while (data[i][1]) {
- tmp.emplace_back(data[i][0], data[i][1]);
- data += 1;
- }
- this->Entries.insert(this->Entries.begin(), tmp.begin(), tmp.end());
-}
-
-void cmDocumentationSection::Append(const char* n, const char* b)
-{
- this->Entries.emplace_back(n, b);
-}