diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-01-01 16:30:32 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-02 15:42:13 +0100 |
commit | 939bf3e864b4b49debc39678152b99d7fb0b4992 (patch) | |
tree | 6dcb889f3140359d4a4f41e4078e7575c363815d /Userland/Applications | |
parent | eb8df0ae2a2177c75a0e1874aa67b8b3b7af2664 (diff) | |
download | serenity-939bf3e864b4b49debc39678152b99d7fb0b4992.zip |
Calculator: Remove KeypadValue::operator>
This method was declared but not implemented, and will probably never be
useful.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Calculator/KeypadValue.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Applications/Calculator/KeypadValue.h b/Userland/Applications/Calculator/KeypadValue.h index e72972fe34..3e2ed586fc 100644 --- a/Userland/Applications/Calculator/KeypadValue.h +++ b/Userland/Applications/Calculator/KeypadValue.h @@ -24,7 +24,6 @@ public: KeypadValue operator*(KeypadValue const&); KeypadValue operator-(void) const; bool operator<(KeypadValue const&); - bool operator>(KeypadValue const&); bool operator==(KeypadValue const&); KeypadValue sqrt() const; |