mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +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:
parent
83603d68d2
commit
f1d47ea618
4 changed files with 0 additions and 23 deletions
|
@ -27,9 +27,4 @@ String Ratio::to_string() const
|
|||
return String::formatted("{} / {}", m_first_value, m_second_value);
|
||||
}
|
||||
|
||||
auto Ratio::operator<=>(Ratio const& other) const
|
||||
{
|
||||
return value() - other.value();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue