Преглед изворни кода

common/file: Remove [[nodiscard]] from Open()

Since this has a void return value, there's nothing that can actually be
used.
Lioncash пре 4 година
родитељ
комит
8f32bab4c9
1 измењених фајлова са 2 додато и 3 уклоњено
  1. 2 3
      src/common/fs/file.h

+ 2 - 3
src/common/fs/file.h

@@ -188,9 +188,8 @@ public:
 
 
 #ifdef _WIN32
 #ifdef _WIN32
     template <typename Path>
     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;
         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);