aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/fs/archive.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-30 13:57:08 -0500
committerbunnei <bunneidev@gmail.com>2015-01-30 13:57:08 -0500
commitc8c3a94b208dd000561eb77d6ab0e585f236a73d (patch)
tree4d1a5ccf5afa0f2e1430fd0eb701fb06187bb733 /src/core/hle/service/fs/archive.cpp
parent28702cbfeb1fe21109f8b1efa189785594319b78 (diff)
parent0c4685ca12b091220f62f800474fd25a2a39d1ad (diff)
Merge pull request #511 from lioncash/warnings
Fix a few warnings.
Diffstat (limited to 'src/core/hle/service/fs/archive.cpp')
-rw-r--r--src/core/hle/service/fs/archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp
index 6682f6590..43eef034e 100644
--- a/src/core/hle/service/fs/archive.cpp
+++ b/src/core/hle/service/fs/archive.cpp
@@ -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(); }