1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:37:45 +00:00

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
parent 83603d68d2
commit f1d47ea618
4 changed files with 0 additions and 23 deletions

View file

@ -18,7 +18,6 @@ public:
bool is_degenerate() const;
String to_string() const;
auto operator<=>(Ratio const& other) const;
private:
float m_first_value { 0 };