diff options
author | bunnei <bunneidev@gmail.com> | 2020-08-19 04:03:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 04:03:09 +0200 |
commit | b1fa647f28068110020b1f3c16e10fad1d1a3438 (patch) | |
tree | 12fb0f2ac678a65fa402235656d2f982acc2f5fb /src/common/file_util.cpp | |
parent | Merge pull request #4522 from lioncash/vulk-copy (diff) | |
parent | common: Silence two discarded result warnings (diff) | |
download | yuzu-b1fa647f28068110020b1f3c16e10fad1d1a3438.tar yuzu-b1fa647f28068110020b1f3c16e10fad1d1a3438.tar.gz yuzu-b1fa647f28068110020b1f3c16e10fad1d1a3438.tar.bz2 yuzu-b1fa647f28068110020b1f3c16e10fad1d1a3438.tar.lz yuzu-b1fa647f28068110020b1f3c16e10fad1d1a3438.tar.xz yuzu-b1fa647f28068110020b1f3c16e10fad1d1a3438.tar.zst yuzu-b1fa647f28068110020b1f3c16e10fad1d1a3438.zip |
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r-- | src/common/file_util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index c869e7b82..16c3713e0 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -909,10 +909,10 @@ std::string SanitizePath(std::string_view path_, DirectorySeparator directory_se return std::string(RemoveTrailingSlash(path)); } -IOFile::IOFile() {} +IOFile::IOFile() = default; IOFile::IOFile(const std::string& filename, const char openmode[], int flags) { - Open(filename, openmode, flags); + void(Open(filename, openmode, flags)); } IOFile::~IOFile() { |