Codechange: remove operator!=s that are synthesized

This commit is contained in:
Rubidium
2025-02-08 00:13:02 +01:00
committed by rubidium42
parent 760b8f74b7
commit 04d53ed6f5
12 changed files with 0 additions and 54 deletions

View File

@@ -665,16 +665,6 @@ struct RefitOption {
uint8_t subtype; ///< Subcargo to use
StringID string; ///< GRF-local String to display for the cargo
/**
* Inequality operator for #RefitOption.
* @param other Compare to this #RefitOption.
* @return True if both #RefitOption are different.
*/
inline bool operator != (const RefitOption &other) const
{
return other.cargo != this->cargo || other.string != this->string;
}
/**
* Equality operator for #RefitOption.
* @param other Compare to this #RefitOption.