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

View File

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