diff options
author | bunnei <bunneidev@gmail.com> | 2020-10-30 08:35:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 08:35:40 +0100 |
commit | 8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9 (patch) | |
tree | 1eaa9ee780dab30783252f6ab68af1e8e62f3f07 /src/common/file_util.h | |
parent | Merge pull request #4867 from lioncash/vp9 (diff) | |
parent | General: Catch more expressions with no effect on MSVC (diff) | |
download | yuzu-8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9.tar yuzu-8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9.tar.gz yuzu-8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9.tar.bz2 yuzu-8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9.tar.lz yuzu-8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9.tar.xz yuzu-8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9.tar.zst yuzu-8aa9ae5ba5269b0c82f771a6fcf47b2534b5faf9.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/file_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file_util.h b/src/common/file_util.h index 8b587320f..840cde2a6 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h @@ -232,7 +232,7 @@ public: void Swap(IOFile& other) noexcept; - [[nodiscard]] bool Open(const std::string& filename, const char openmode[], int flags = 0); + bool Open(const std::string& filename, const char openmode[], int flags = 0); bool Close(); template <typename T> |