mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:47:34 +00:00
AK: Fix unused parameter bug in SinglyLinkedList (#928)
This commit is contained in:
parent
d1c16944ce
commit
5d1acdda82
1 changed files with 2 additions and 2 deletions
|
@ -189,7 +189,7 @@ public:
|
|||
|
||||
void insert_before(Iterator iterator, const T& value)
|
||||
{
|
||||
insert_before(T(value));
|
||||
insert_before(iterator, T(value));
|
||||
}
|
||||
|
||||
void insert_before(Iterator iterator, T&& value)
|
||||
|
@ -204,7 +204,7 @@ public:
|
|||
|
||||
void insert_after(Iterator iterator, const T& value)
|
||||
{
|
||||
insert_after(T(value));
|
||||
insert_after(iterator, T(value));
|
||||
}
|
||||
|
||||
void insert_after(Iterator iterator, T&& value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue