diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-12 11:12:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 11:12:45 -0700 |
commit | 8e7734bf40a6d6672a511aefdb21898c07f59039 (patch) | |
tree | f99254d03684b2b6f69522ceb7a16cd87a6ce16b /src | |
parent | 26d60014d04a2d2134076435d213c9585e802038 (diff) | |
parent | 0fb37739247988d43147e33db3448f0c09ffe047 (diff) |
Merge pull request #6192 from lioncash/discard
k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/k_thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h index 1c86fdd203..b442dfe577 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h @@ -402,7 +402,7 @@ public: return wait_cancelled; } - [[nodiscard]] void ClearWaitCancelled() { + void ClearWaitCancelled() { wait_cancelled = false; } |