summaryrefslogtreecommitdiffstats
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-08-16 12:17:30 +0200
committerLioncash <mathew1800@gmail.com>2020-08-16 12:17:33 +0200
commitd09456fc41acf626ebc9687e50124d18c75ef804 (patch)
tree13978123fbe34c7433399e2027bda5e7f1edd823 /src/common/file_util.cpp
parentMerge pull request #4528 from lioncash/discard (diff)
downloadyuzu-d09456fc41acf626ebc9687e50124d18c75ef804.tar
yuzu-d09456fc41acf626ebc9687e50124d18c75ef804.tar.gz
yuzu-d09456fc41acf626ebc9687e50124d18c75ef804.tar.bz2
yuzu-d09456fc41acf626ebc9687e50124d18c75ef804.tar.lz
yuzu-d09456fc41acf626ebc9687e50124d18c75ef804.tar.xz
yuzu-d09456fc41acf626ebc9687e50124d18c75ef804.tar.zst
yuzu-d09456fc41acf626ebc9687e50124d18c75ef804.zip
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r--src/common/file_util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 4ede9f72c..cf92e2e76 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -902,10 +902,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() {