summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2022-01-01 16:30:32 +0100
committerAndreas Kling <kling@serenityos.org>2022-01-02 15:42:13 +0100
commit939bf3e864b4b49debc39678152b99d7fb0b4992 (patch)
tree6dcb889f3140359d4a4f41e4078e7575c363815d /Userland/Applications
parenteb8df0ae2a2177c75a0e1874aa67b8b3b7af2664 (diff)
downloadserenity-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.h1
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;