Browse Source

k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()

This function has a void return value, so this attribute doesn't apply
to it.
Lioncash 5 năm trước cách đây
mục cha
commit
0fb3773924
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/core/hle/kernel/k_thread.h

+ 1 - 1
src/core/hle/kernel/k_thread.h

@@ -402,7 +402,7 @@ public:
         return wait_cancelled;
     }
 
-    [[nodiscard]] void ClearWaitCancelled() {
+    void ClearWaitCancelled() {
         wait_cancelled = false;
     }