1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:37:44 +00:00

Calculator: Remove KeypadValue::operator>

This method was declared but not implemented, and will probably never be
useful.
This commit is contained in:
Lucas CHOLLET 2022-01-01 16:30:32 +01:00 committed by Andreas Kling
parent eb8df0ae2a
commit 939bf3e864

View file

@ -24,7 +24,6 @@ public:
KeypadValue operator*(KeypadValue const&); KeypadValue operator*(KeypadValue const&);
KeypadValue operator-(void) const; KeypadValue operator-(void) const;
bool operator<(KeypadValue const&); bool operator<(KeypadValue const&);
bool operator>(KeypadValue const&);
bool operator==(KeypadValue const&); bool operator==(KeypadValue const&);
KeypadValue sqrt() const; KeypadValue sqrt() const;