summaryrefslogtreecommitdiff
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorGravatar bunnei2015-04-14 19:13:33 -0400
committerGravatar bunnei2015-04-14 19:13:33 -0400
commit46ea6944c3f637efee013ecc4ac65fd4985031a8 (patch)
tree803f60fa0ed6e8c244f3e0b4eef30b37a61f8e2f /src/core/file_sys
parentMerge pull request #683 from bunnei/thread-priority (diff)
parentCore_ARM11: Replace debug prints with our own logging functions in vfpsingle. (diff)
downloadyuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.gz
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.xz
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.zip
Merge pull request #697 from linkmauve/clang<3
Fix a few warnings as reported by clang 3.6
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/disk_archive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/disk_archive.h b/src/core/file_sys/disk_archive.h
index dbbdced74..770bd715e 100644
--- a/src/core/file_sys/disk_archive.h
+++ b/src/core/file_sys/disk_archive.h
@@ -24,7 +24,7 @@ class DiskArchive : public ArchiveBackend {
24public: 24public:
25 DiskArchive(const std::string& mount_point_) : mount_point(mount_point_) {} 25 DiskArchive(const std::string& mount_point_) : mount_point(mount_point_) {}
26 26
27 virtual std::string GetName() const { return "DiskArchive: " + mount_point; } 27 virtual std::string GetName() const override { return "DiskArchive: " + mount_point; }
28 28
29 std::unique_ptr<FileBackend> OpenFile(const Path& path, const Mode mode) const override; 29 std::unique_ptr<FileBackend> OpenFile(const Path& path, const Mode mode) const override;
30 bool DeleteFile(const Path& path) const override; 30 bool DeleteFile(const Path& path) const override;