| 18 | : location_(std::move(location)), severity_(severity) {} |
| 19 | |
| 20 | MdfLogStream::~MdfLogStream() { |
| 21 | MdfLogStream::LogString(location_, severity_, str()); |
| 22 | } |
| 23 | |
| 24 | void MdfLogStream::LogString(const MdfLocation &location, MdfLogSeverity severity, |
| 25 | const std::string &text) { |
nothing calls this directly
no test coverage detected