| 318 | |
| 319 | template<typename Stream> |
| 320 | void Serialize(Stream& s) const |
| 321 | { |
| 322 | // Special case: stream << stream concatenates like stream += stream |
| 323 | if (!vch.empty()) |
| 324 | s.write(MakeByteSpan(vch)); |
| 325 | } |
| 326 | |
| 327 | template<typename T> |
| 328 | CDataStream& operator<<(const T& obj) |
nothing calls this directly
no test coverage detected