Merge pull request #6192 from lioncash/discard

k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()
This commit is contained in:
bunnei 2021-04-12 11:12:45 -07:00 committed by GitHub
commit 8e7734bf40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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