AK: Remove unimplemented methods

This commit is contained in:
Sam Atkins 2023-01-27 16:38:37 +00:00 committed by Linus Groh
commit 09a22ddb2a
Notes: sideshowbarker 2024-07-17 01:07:10 +09:00
2 changed files with 0 additions and 3 deletions

View file

@ -215,12 +215,10 @@ public:
bool operator==(DeprecatedFlyString const&) const;
bool operator<(DeprecatedString const&) const;
bool operator<(char const*) const;
bool operator>=(DeprecatedString const& other) const { return !(*this < other); }
bool operator>=(char const* other) const { return !(*this < other); }
bool operator>(DeprecatedString const&) const;
bool operator>(char const*) const;
bool operator<=(DeprecatedString const& other) const { return !(*this > other); }
bool operator<=(char const* other) const { return !(*this > other); }