Skips the next element of the serialization.
| 601 | } |
| 602 | // Skips the next element of the serialization. |
| 603 | static bool DeSerializeSkip(bool swap, TFile* fp) { |
| 604 | inT8 non_null; |
| 605 | if (fp->FRead(&non_null, sizeof(non_null), 1) != 1) return false; |
| 606 | if (non_null) { |
| 607 | if (!T::SkipDeSerialize(swap, fp)) return false; |
| 608 | } |
| 609 | return true; |
| 610 | } |
| 611 | |
| 612 | // Sorts the items pointed to by the members of this vector using |
| 613 | // t::operator<(). |