| 112 | template <class T, bool isPod> |
| 113 | struct TSerializerTakingIntoAccountThePodType { |
| 114 | static inline void Save(IOutputStream* out, const T& t) { |
| 115 | ::SavePodType(out, t); |
| 116 | } |
| 117 | |
| 118 | static inline void Load(IInputStream* in, T& t) { |
| 119 | ::LoadPodType(in, t); |
nothing calls this directly
no test coverage detected