diff options
author | bunnei <bunneidev@gmail.com> | 2020-08-18 22:03:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 22:03:09 -0400 |
commit | b1fa647f28068110020b1f3c16e10fad1d1a3438 (patch) | |
tree | 12fb0f2ac678a65fa402235656d2f982acc2f5fb /src/common/file_util.cpp | |
parent | 2d2e235bcf1989f65e3a06334efd86a9041ab0de (diff) | |
parent | d09456fc41acf626ebc9687e50124d18c75ef804 (diff) |
Merge pull request #4539 from lioncash/disc
common: Silence two discarded result warnings
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 c869e7b820..16c3713e01 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() { |