Просмотр исходного кода

vfs_real: Remove redundant copying of std::vector instances in GetFiles() and GetSubdirectories()

We already return by value, so we don't explicitly need to make the
copy.
Lioncash 8 лет назад
Родитель
Сommit
b46c0ed1fa
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      src/core/file_sys/vfs_real.cpp

+ 3 - 2
src/core/file_sys/vfs_real.cpp

@@ -3,6 +3,7 @@
 // Refer to the license.txt file included.
 
 #include <algorithm>
+#include <cstddef>
 #include <iterator>
 #include <utility>
 
@@ -108,11 +109,11 @@ RealVfsDirectory::RealVfsDirectory(const std::string& path_, Mode perms_)
 }
 
 std::vector<std::shared_ptr<VfsFile>> RealVfsDirectory::GetFiles() const {
-    return std::vector<std::shared_ptr<VfsFile>>(files);
+    return files;
 }
 
 std::vector<std::shared_ptr<VfsDirectory>> RealVfsDirectory::GetSubdirectories() const {
-    return std::vector<std::shared_ptr<VfsDirectory>>(subdirectories);
+    return subdirectories;
 }
 
 bool RealVfsDirectory::IsWritable() const {