diff options
| author | 2015-04-14 19:13:33 -0400 | |
|---|---|---|
| committer | 2015-04-14 19:13:33 -0400 | |
| commit | 46ea6944c3f637efee013ecc4ac65fd4985031a8 (patch) | |
| tree | 803f60fa0ed6e8c244f3e0b4eef30b37a61f8e2f /src/core/file_sys | |
| parent | Merge pull request #683 from bunnei/thread-priority (diff) | |
| parent | Core_ARM11: Replace debug prints with our own logging functions in vfpsingle. (diff) | |
| download | yuzu-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.h | 2 |
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 { | |||
| 24 | public: | 24 | public: |
| 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; |