Merge pull request #7825 from lioncash/nodisc2

common/file: Remove [[nodiscard]] from Open()
This commit is contained in:
Morph 2022-02-01 02:29:36 -05:00 committed by GitHub
commit 7432343214
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,9 +188,8 @@ public:
#ifdef _WIN32 #ifdef _WIN32
template <typename Path> template <typename Path>
[[nodiscard]] void Open(const Path& path, FileAccessMode mode, void Open(const Path& path, FileAccessMode mode, FileType type = FileType::BinaryFile,
FileType type = FileType::BinaryFile, FileShareFlag flag = FileShareFlag::ShareReadOnly) {
FileShareFlag flag = FileShareFlag::ShareReadOnly) {
using ValueType = typename Path::value_type; using ValueType = typename Path::value_type;
if constexpr (IsChar<ValueType>) { if constexpr (IsChar<ValueType>) {
Open(ToU8String(path), mode, type, flag); Open(ToU8String(path), mode, type, flag);