archive: Fix initializer list order for the File class.
This commit is contained in:
parent
0c53cc52bd
commit
551264f815
|
@ -89,7 +89,7 @@ public:
|
||||||
class File : public Kernel::Session {
|
class File : public Kernel::Session {
|
||||||
public:
|
public:
|
||||||
File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path)
|
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(); }
|
std::string GetName() const override { return "Path: " + path.DebugStr(); }
|
||||||
|
|
Reference in New Issue