summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentationSection.h
diff options
context:
space:
mode:
authorAlex Turbov <i.zaufi@gmail.com>2022-08-24 04:41:41 (GMT)
committerAlex Turbov <i.zaufi@gmail.com>2022-11-17 12:37:12 (GMT)
commit69918b07e17cce822ad8f11950da476c42e419ee (patch)
tree2dec5b12c0b4e3702dbdc31b5bee1b72e21ad8e6 /Source/cmDocumentationSection.h
parent439d2cf9cb79884747b3d3d56f83b044a108c40a (diff)
downloadCMake-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/cmDocumentationSection.h')
-rw-r--r--Source/cmDocumentationSection.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmDocumentationSection.h b/Source/cmDocumentationSection.h
index b80131d..b5e24fe 100644
--- a/Source/cmDocumentationSection.h
+++ b/Source/cmDocumentationSection.h
@@ -52,12 +52,6 @@ public:
std::end(entries));
}
- /** Append an entry to this section using NULL terminated chars */
- void Append(const char* n, const char* b)
- {
- this->Entries.emplace_back(n, b);
- }
-
/** prepend some documentation to this section */
template <typename Iterable>
void Prepend(const Iterable& entries)