mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 23:56:06 +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
Notes:
sideshowbarker
2024-07-17 11:34:59 +09:00
Author: https://github.com/ADKaster
Commit: f1d47ea618
Pull-request: https://github.com/SerenityOS/serenity/pull/13671
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/timschumi ✅
4 changed files with 0 additions and 23 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue