summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_sdmcwriteonly.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-07 11:20:35 +0100
committerLioncash <mathew1800@gmail.com>2016-12-07 23:26:56 +0100
commit5e9f1ec096892aeea8fc6fd27d0047839efe4f7b (patch)
tree80dafbb190346ed9397b39cc766e346abb167422 /src/core/file_sys/archive_sdmcwriteonly.h
parentMerge pull request #2232 from wwylele/other-save (diff)
downloadyuzu-5e9f1ec096892aeea8fc6fd27d0047839efe4f7b.tar
yuzu-5e9f1ec096892aeea8fc6fd27d0047839efe4f7b.tar.gz
yuzu-5e9f1ec096892aeea8fc6fd27d0047839efe4f7b.tar.bz2
yuzu-5e9f1ec096892aeea8fc6fd27d0047839efe4f7b.tar.lz
yuzu-5e9f1ec096892aeea8fc6fd27d0047839efe4f7b.tar.xz
yuzu-5e9f1ec096892aeea8fc6fd27d0047839efe4f7b.tar.zst
yuzu-5e9f1ec096892aeea8fc6fd27d0047839efe4f7b.zip
Diffstat (limited to 'src/core/file_sys/archive_sdmcwriteonly.h')
-rw-r--r--src/core/file_sys/archive_sdmcwriteonly.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/archive_sdmcwriteonly.h b/src/core/file_sys/archive_sdmcwriteonly.h
index ed977485a..9cd38d96f 100644
--- a/src/core/file_sys/archive_sdmcwriteonly.h
+++ b/src/core/file_sys/archive_sdmcwriteonly.h
@@ -19,7 +19,7 @@ namespace FileSys {
*/
class SDMCWriteOnlyArchive : public SDMCArchive {
public:
- SDMCWriteOnlyArchive(const std::string& mount_point) : SDMCArchive(mount_point) {}
+ explicit SDMCWriteOnlyArchive(const std::string& mount_point) : SDMCArchive(mount_point) {}
std::string GetName() const override {
return "SDMCWriteOnlyArchive: " + mount_point;
@@ -34,7 +34,7 @@ public:
/// File system interface to the SDMC write-only archive
class ArchiveFactory_SDMCWriteOnly final : public ArchiveFactory {
public:
- ArchiveFactory_SDMCWriteOnly(const std::string& mount_point);
+ explicit ArchiveFactory_SDMCWriteOnly(const std::string& mount_point);
/**
* Initialize the archive.