| 479 | } |
| 480 | |
| 481 | void cmDocumentation::AppendSection(char const* name, |
| 482 | cmDocumentationEntry& docs) |
| 483 | { |
| 484 | |
| 485 | std::vector<cmDocumentationEntry> docsVec; |
| 486 | docsVec.push_back(docs); |
| 487 | this->AppendSection(name, docsVec); |
| 488 | } |
| 489 | |
| 490 | void cmDocumentation::PrependSection(char const* name, |
| 491 | cmDocumentationEntry& docs) |
no test coverage detected