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

@@ -618,11 +618,6 @@ struct ScenarioIdentifier {
{
return this->scenid == other.scenid && this->md5sum == other.md5sum;
}
bool operator != (const ScenarioIdentifier &other) const
{
return !(*this == other);
}
};
/**