| 704 | { |
| 705 | template<typename Stream, typename T> |
| 706 | static void Ser(Stream& s, const T& t) { Serialize(s, t); } |
| 707 | |
| 708 | template<typename Stream, typename T> |
| 709 | static void Unser(Stream& s, T& t) { Unserialize(s, t); } |
nothing calls this directly
no test coverage detected