(svn r14137) -Codechange: Remove a now unused member of CargoPacket

This commit is contained in:
celestar 2008-08-23 09:31:53 +00:00
parent e89e6b1361
commit 7e8c7dfcbf
2 changed files with 0 additions and 13 deletions

View File

@ -274,14 +274,3 @@ void CargoList::InvalidateCache()
source = (*packets.begin())->source;
}
/** Restore an array of cargo packets from a backup
* The end of the row should be marked by an invalid packet
*/
void CargoPacket::RestoreBackup() const
{
for (const CargoPacket *cargo = this; cargo->IsValid(); cargo++) {
CargoPacket *dest = GetCargoPacket(cargo->index);
assert(!dest->IsValid());
memcpy(dest, cargo, sizeof(CargoPacket));
}
}

View File

@ -56,8 +56,6 @@ struct CargoPacket : PoolItem<CargoPacket, CargoPacketID, &_CargoPacket_pool> {
* @return true if and only if days_in_transit and source_xy are equal
*/
bool SameSource(const CargoPacket *cp) const;
void RestoreBackup() const;
};
/**