mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:47:35 +00:00
AK: Remove unimplemented methods
This commit is contained in:
parent
df07c5be3a
commit
09a22ddb2a
2 changed files with 0 additions and 3 deletions
|
@ -215,12 +215,10 @@ public:
|
||||||
bool operator==(DeprecatedFlyString const&) const;
|
bool operator==(DeprecatedFlyString const&) const;
|
||||||
|
|
||||||
bool operator<(DeprecatedString const&) const;
|
bool operator<(DeprecatedString const&) const;
|
||||||
bool operator<(char const*) const;
|
|
||||||
bool operator>=(DeprecatedString const& other) const { return !(*this < other); }
|
bool operator>=(DeprecatedString const& other) const { return !(*this < other); }
|
||||||
bool operator>=(char const* other) const { return !(*this < other); }
|
bool operator>=(char const* other) const { return !(*this < other); }
|
||||||
|
|
||||||
bool operator>(DeprecatedString const&) const;
|
bool operator>(DeprecatedString const&) const;
|
||||||
bool operator>(char const*) const;
|
|
||||||
bool operator<=(DeprecatedString const& other) const { return !(*this > other); }
|
bool operator<=(DeprecatedString const& other) const { return !(*this > other); }
|
||||||
bool operator<=(char 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);
|
m_value = IntrusiveList<T, Container, member>::prev(m_value);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
ReverseIterator& erase();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
T* m_value { nullptr };
|
T* m_value { nullptr };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue