From 939bf3e864b4b49debc39678152b99d7fb0b4992 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 1 Jan 2022 16:30:32 +0100 Subject: [PATCH] Calculator: Remove KeypadValue::operator> This method was declared but not implemented, and will probably never be useful. --- Userland/Applications/Calculator/KeypadValue.h | 1 - 1 file changed, 1 deletion(-) 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;