* Create an unordered multi-line list of items. */
| 69 | * Create an unordered multi-line list of items. |
| 70 | */ |
| 71 | inline std::string MakeUnorderedList(const std::vector<std::string>& items) |
| 72 | { |
| 73 | return Join(items, "\n", [](const std::string& item) { return "- " + item; }); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Check if a string does not contain any embedded NUL (\0) characters |
no test coverage detected