| 1055 | |
| 1056 | template<typename Stream, typename... Args> |
| 1057 | inline void SerReadWriteMany(Stream& s, CSerActionSerialize ser_action, const Args&... args) |
| 1058 | { |
| 1059 | ::SerializeMany(s, args...); |
| 1060 | } |
| 1061 | |
| 1062 | template<typename Stream, typename... Args> |
| 1063 | inline void SerReadWriteMany(Stream& s, CSerActionUnserialize ser_action, Args&&... args) |
no test coverage detected