Browse Source
Merge pull request #6192 from lioncash/discard
k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/kernel/k_thread.h
|
|
@ -402,7 +402,7 @@ public: |
|
|
return wait_cancelled; |
|
|
return wait_cancelled; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
[[nodiscard]] void ClearWaitCancelled() { |
|
|
|
|
|
|
|
|
void ClearWaitCancelled() { |
|
|
wait_cancelled = false; |
|
|
wait_cancelled = false; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|