1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-04-14 00:04:08 -05:00

k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()

This function has a void return value, so this attribute doesn't apply
to it.
This commit is contained in:
Lioncash 2021-04-12 10:17:35 -04:00
parent 26d60014d0
commit 0fb3773924

View File

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