summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-12 22:47:08 +0200
committerLioncash <mathew1800@gmail.com>2018-08-12 22:55:40 +0200
commitb82b09310827f4b94fb42dfe8a0c64c47878c0c7 (patch)
treed3706e0785873f9ce5f4ce632bba5438885d6748 /src/core/file_sys
parentvfs: Make type hierarchy objects classes instead of structs (diff)
downloadyuzu-b82b09310827f4b94fb42dfe8a0c64c47878c0c7.tar
yuzu-b82b09310827f4b94fb42dfe8a0c64c47878c0c7.tar.gz
yuzu-b82b09310827f4b94fb42dfe8a0c64c47878c0c7.tar.bz2
yuzu-b82b09310827f4b94fb42dfe8a0c64c47878c0c7.tar.lz
yuzu-b82b09310827f4b94fb42dfe8a0c64c47878c0c7.tar.xz
yuzu-b82b09310827f4b94fb42dfe8a0c64c47878c0c7.tar.zst
yuzu-b82b09310827f4b94fb42dfe8a0c64c47878c0c7.zip
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/vfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h
index 3bbc361ba..78a63c59b 100644
--- a/src/core/file_sys/vfs.h
+++ b/src/core/file_sys/vfs.h
@@ -36,7 +36,7 @@ enum class VfsEntryType {
// functionality, they will need to override.
class VfsFilesystem : NonCopyable {
public:
- VfsFilesystem(VirtualDir root);
+ explicit VfsFilesystem(VirtualDir root);
virtual ~VfsFilesystem();
// Gets the friendly name for the filesystem.