diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/file_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index d8163a4a8..543adbffb 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp | |||
| @@ -480,7 +480,7 @@ unsigned ScanDirectoryTree(const std::string& directory, FSTEntry& parent_entry, | |||
| 480 | (*num_entries_out)++; | 480 | (*num_entries_out)++; |
| 481 | 481 | ||
| 482 | // Push into the tree | 482 | // Push into the tree |
| 483 | parent_entry.children.push_back(entry); | 483 | parent_entry.children.push_back(std::move(entry)); |
| 484 | return true; | 484 | return true; |
| 485 | }; | 485 | }; |
| 486 | 486 | ||