| 125 | } |
| 126 | |
| 127 | static inline void SaveArray(IOutputStream* out, const T* t, size_t len) { |
| 128 | ::SavePodArray(out, t, len); |
| 129 | } |
| 130 | |
| 131 | static inline void LoadArray(IInputStream* in, T* t, size_t len) { |
| 132 | ::LoadPodArray(in, t, len); |
nothing calls this directly
no test coverage detected