\brief Append a single character Append a single character to the buffer
| 82 | /// |
| 83 | /// Append a single character to the buffer |
| 84 | void Append(const char c) { mOutput += c; } |
| 85 | |
| 86 | void Append(const std::string_view& arg) { mOutput += arg; } |
| 87 |
no test coverage detected