| 336 | } |
| 337 | |
| 338 | static inline void Load(IInputStream* rh, TVec& v) { |
| 339 | ::LoadSizeAndResize(rh, v); |
| 340 | TIter b = v.begin(); |
| 341 | TIter e = (TIter)v.end(); |
| 342 | ::LoadRange(rh, b, e); |
| 343 | } |
| 344 | |
| 345 | template <class TStorage> |
| 346 | static inline void Load(IInputStream* rh, TVec& v, TStorage& pool) { |
nothing calls this directly
no test coverage detected