WbfsBlob: Don't wrap file_entry in std::unique_ptr

There doesn't seem to be any reason for doing it.
This commit is contained in:
JosJuice
2016-12-31 22:51:16 +01:00
parent 0363be4320
commit b1873264d7
2 changed files with 14 additions and 14 deletions

View File

@ -53,7 +53,7 @@ private:
u64 size;
};
std::vector<std::unique_ptr<file_entry>> m_files;
std::vector<file_entry> m_files;
u64 m_size;