diff options
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 | |||
| 909 | return std::string(RemoveTrailingSlash(path)); | 909 | return std::string(RemoveTrailingSlash(path)); |
| 910 | } | 910 | } |
| 911 | 911 | ||
| 912 | IOFile::IOFile() {} | 912 | IOFile::IOFile() = default; |
| 913 | 913 | ||
| 914 | IOFile::IOFile(const std::string& filename, const char openmode[], int flags) { | 914 | IOFile::IOFile(const std::string& filename, const char openmode[], int flags) { |
| 915 | Open(filename, openmode, flags); | 915 | void(Open(filename, openmode, flags)); |
| 916 | } | 916 | } |
| 917 | 917 | ||
| 918 | IOFile::~IOFile() { | 918 | IOFile::~IOFile() { |