mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
AK: Remove duplicate begin()/end() methods
begin()/end() returning a ConstItertor already exist further up in this file. Nothing uses these redundant versions, and they are not callable.
This commit is contained in:
parent
2c9e6585f8
commit
e673abb93f
Notes:
sideshowbarker
2024-07-19 01:31:35 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/e673abb93ff Pull-request: https://github.com/SerenityOS/serenity/pull/3983
1 changed files with 0 additions and 3 deletions
|
@ -178,9 +178,6 @@ public:
|
|||
|
||||
String to_string() const;
|
||||
|
||||
const char* begin() { return m_characters; }
|
||||
const char* end() { return m_characters + m_length; }
|
||||
|
||||
template<typename T, typename... Rest>
|
||||
bool is_one_of(const T& string, Rest... rest) const
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue