mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
Merge pull request #7825 from lioncash/nodisc2
common/file: Remove [[nodiscard]] from Open()
This commit is contained in:
commit
7432343214
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue