Helper for single-line TL;DR; that adds a newline.
| 67 | |
| 68 | // Helper for single-line TL;DR; that adds a newline. |
| 69 | inline std::string TLDR(const std::string& tldr) |
| 70 | { |
| 71 | return tldr + "\n"; |
| 72 | } |
| 73 | |
| 74 | |
| 75 | template <typename... T> |
no outgoing calls
no test coverage detected