aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-12 11:12:45 -0700
committerGitHub <noreply@github.com>2021-04-12 11:12:45 -0700
commit8e7734bf40a6d6672a511aefdb21898c07f59039 (patch)
treef99254d03684b2b6f69522ceb7a16cd87a6ce16b
parent26d60014d04a2d2134076435d213c9585e802038 (diff)
parent0fb37739247988d43147e33db3448f0c09ffe047 (diff)
Merge pull request #6192 from lioncash/discard
k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()
-rw-r--r--src/core/hle/kernel/k_thread.h2
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;
}