| 114 | } |
| 115 | |
| 116 | void FileTraceLogWriter::write(const std::string& str) { |
| 117 | write(str.data(), str.size()); |
| 118 | } |
| 119 | |
| 120 | void FileTraceLogWriter::write(const StringRef& str) { |
| 121 | write(reinterpret_cast<const char*>(str.begin()), str.size()); |
nothing calls this directly
no test coverage detected