LibWeb+AudioServer: Remove unused spaceship operators

We aren't actually using these for anything, and the spaceship operator
requires ``<compare>`` from the STL, which we'd rather not include.
This commit is contained in:
Andrew Kaster 2022-04-09 16:02:13 -06:00 committed by Brian Gianforcaro
commit f1d47ea618
Notes: sideshowbarker 2024-07-17 11:34:59 +09:00
4 changed files with 0 additions and 23 deletions

View file

@ -68,11 +68,6 @@ public:
return { Type::Number, m_value / other.m_value };
}
auto operator<=>(Number const& other) const
{
return m_value - other.m_value;
}
private:
float m_value { 0 };
Type m_type;