diff options
Diffstat (limited to 'Source/cmDocumentationSection.h')
-rw-r--r-- | Source/cmDocumentationSection.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmDocumentationSection.h b/Source/cmDocumentationSection.h index e1b5454..b80131d 100644 --- a/Source/cmDocumentationSection.h +++ b/Source/cmDocumentationSection.h @@ -53,12 +53,12 @@ public: } /** Append an entry to this section using NULL terminated chars */ - void Append(const char* [][2]); - void Append(const char* n, const char* b); + void Append(const char* n, const char* b) + { + this->Entries.emplace_back(n, b); + } /** prepend some documentation to this section */ - void Prepend(const char* [][2]); - template <typename Iterable> void Prepend(const Iterable& entries) { |