\brief Same as \ref Append but adds a newline after the last argument. Append a single character to the buffer
| 94 | /// |
| 95 | /// Append a single character to the buffer |
| 96 | void AppendNewLine(const char c) |
| 97 | { |
| 98 | mOutput += c; |
| 99 | NewLine(); |
| 100 | } |
| 101 | |
| 102 | void AppendNewLine(const std::string_view& arg) |
| 103 | { |
no test coverage detected