| 505 | |
| 506 | template<typename Stream> |
| 507 | void Serialize(Stream& s) const |
| 508 | { |
| 509 | WriteCompactSize(s, string.size()); |
| 510 | if (!string.empty()) |
| 511 | s.write((char*)string.data(), string.size()); |
| 512 | } |
| 513 | }; |
| 514 | |
| 515 | template<VarIntMode Mode=VarIntMode::DEFAULT, typename I> |
nothing calls this directly
no test coverage detected