archive: Fix initializer list order for the File class.

This commit is contained in:
Lioncash 2015-01-30 11:30:22 -05:00
parent 0c53cc52bd
commit 551264f815
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public:
class File : public Kernel::Session {
public:
File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path)
: path(path), backend(std::move(backend)), priority(0) {
: path(path), priority(0), backend(std::move(backend)) {
}
std::string GetName() const override { return "Path: " + path.DebugStr(); }