1
0
Fork 0

Cleanup: Remove unneeded destructor.

pull/12606/head
Peter Nelson 2024-05-01 20:19:35 +01:00
parent 474d02f882
commit b1c036bd35
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
2 changed files with 0 additions and 6 deletions

View File

@ -3170,10 +3170,6 @@ bool IndustrySpec::UsesOriginalEconomy() const
HasBit(this->callback_mask, CBM_IND_MONTHLYPROD_CHANGE) || HasBit(this->callback_mask, CBM_IND_PRODUCTION_CHANGE) || HasBit(this->callback_mask, CBM_IND_PROD_CHANGE_BUILD); // production change callbacks
}
IndustrySpec::~IndustrySpec()
{
}
static CommandCost TerraformTile_Industry(TileIndex tile, DoCommandFlag flags, int z_new, Slope tileh_new)
{
if (AutoslopeEnabled()) {

View File

@ -139,8 +139,6 @@ struct IndustrySpec {
Money GetConstructionCost() const;
Money GetRemovalCost() const;
bool UsesOriginalEconomy() const;
~IndustrySpec();
};
/**