mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:38:11 +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
|
@ -123,8 +123,8 @@ void FileSystemModel::Node::traverse_if_needed()
|
|||
file_children.append(move(child));
|
||||
}
|
||||
|
||||
children.append(move(directory_children));
|
||||
children.append(move(file_children));
|
||||
children.extend(move(directory_children));
|
||||
children.extend(move(file_children));
|
||||
|
||||
if (!m_model.m_file_watcher->is_watching(full_path)) {
|
||||
// We are not already watching this file, watch it
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue