| 120 | IpcWriteOptions options = {}; |
| 121 | |
| 122 | std::string ToString() const { |
| 123 | std::stringstream ss; |
| 124 | ss << *this; |
| 125 | return std::move(ss).str(); |
| 126 | } |
| 127 | |
| 128 | friend std::ostream& operator<<(std::ostream& os, const SampleMessageParams& p) { |
| 129 | os << "legacy IPC = " << p.options.write_legacy_ipc_format << ", " |
no test coverage detected