mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:27:34 +00:00
AK: Rename Vector::append(Vector) => Vector::extend(Vector)
Let's make it a bit more clear when we're appending the elements from one vector to the end of another vector.
This commit is contained in:
parent
7e1bffdeb8
commit
dc65f54c06
37 changed files with 103 additions and 104 deletions
|
@ -160,7 +160,7 @@ public:
|
|||
void reset()
|
||||
{
|
||||
m_code_table.clear();
|
||||
m_code_table.append(m_original_code_table);
|
||||
m_code_table.extend(m_original_code_table);
|
||||
m_code_size = m_original_code_size;
|
||||
m_table_capacity = pow(2, m_code_size);
|
||||
m_output.clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue