diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-19 16:04:13 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-19 16:04:16 +0200 |
commit | f317080f406c940198debdcc2deb1669707742f1 (patch) | |
tree | 2ef6c6ab4a2f150e1658f2582a751ecc1af87980 /src/core | |
parent | fsp_srv: Add missing includes (diff) | |
download | yuzu-f317080f406c940198debdcc2deb1669707742f1.tar yuzu-f317080f406c940198debdcc2deb1669707742f1.tar.gz yuzu-f317080f406c940198debdcc2deb1669707742f1.tar.bz2 yuzu-f317080f406c940198debdcc2deb1669707742f1.tar.lz yuzu-f317080f406c940198debdcc2deb1669707742f1.tar.xz yuzu-f317080f406c940198debdcc2deb1669707742f1.tar.zst yuzu-f317080f406c940198debdcc2deb1669707742f1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index 6ef022ce0..4cb2d6909 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp @@ -33,7 +33,7 @@ enum class StorageId : u8 { class IStorage final : public ServiceFramework<IStorage> { public: - IStorage(FileSys::VirtualFile backend_) + explicit IStorage(FileSys::VirtualFile backend_) : ServiceFramework("IStorage"), backend(std::move(backend_)) { static const FunctionInfo functions[] = { {0, &IStorage::Read, "Read"}, {1, nullptr, "Write"}, {2, nullptr, "Flush"}, |