diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-20 22:30:20 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-20 22:30:22 -0400 |
commit | b46c0ed1fa07698297d5cf645b97a1978092868d (patch) | |
tree | ae58cf355582de44ae680687df12c766ca1a9d79 | |
parent | ec71915ede4cd1322ce1781b2a4545dfd46a0abf (diff) |
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.
-rw-r--r-- | src/core/file_sys/vfs_real.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/file_sys/vfs_real.cpp b/src/core/file_sys/vfs_real.cpp index 8df6e97ef8..f27fb1f2a3 100644 --- a/src/core/file_sys/vfs_real.cpp +++ b/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 { |