| 958 | |
| 959 | template<typename Stream, typename... Args> |
| 960 | inline void SerReadWriteMany(Stream& s, CSerActionSerialize ser_action, const Args&... args) |
| 961 | { |
| 962 | ::SerializeMany(s, args...); |
| 963 | } |
| 964 | |
| 965 | template<typename Stream, typename... Args> |
| 966 | inline void SerReadWriteMany(Stream& s, CSerActionUnserialize ser_action, Args&&... args) |
nothing calls this directly
no test coverage detected