mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +00:00
AK: Remove unimplemented methods
This commit is contained in:
parent
df07c5be3a
commit
09a22ddb2a
Notes:
sideshowbarker
2024-07-17 01:07:10 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/09a22ddb2a Pull-request: https://github.com/SerenityOS/serenity/pull/17203 Reviewed-by: https://github.com/linusg ✅
2 changed files with 0 additions and 3 deletions
|
@ -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); }
|
||||
|
||||
|
|
|
@ -112,7 +112,6 @@ public:
|
|||
m_value = IntrusiveList<T, Container, member>::prev(m_value);
|
||||
return *this;
|
||||
}
|
||||
ReverseIterator& erase();
|
||||
|
||||
private:
|
||||
T* m_value { nullptr };
|
||||
|
|
Loading…
Add table
Reference in a new issue