Browse Source

Merge pull request #7825 from lioncash/nodisc2

common/file: Remove [[nodiscard]] from Open()
nce_cpp
Morph 4 years ago
committed by GitHub
parent
commit
4a668e6690
  1. 5
      src/common/fs/file.h

5
src/common/fs/file.h

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

Loading…
Cancel
Save