mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-23 17:48:03 +00:00
[gcc] Fix -Wempty-body warning. NFC.
This commit is contained in:
parent
0c119ba8a8
commit
d2acf22927
@ -293,7 +293,7 @@ struct __libcpp_timed_backoff_policy {
|
||||
else if(__elapsed > chrono::microseconds(4))
|
||||
__libcpp_thread_yield();
|
||||
else
|
||||
; // poll
|
||||
{} // poll
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
@ -1525,7 +1525,7 @@ struct __libcpp_atomic_wait_backoff_impl {
|
||||
else if(__elapsed > chrono::microseconds(4))
|
||||
__libcpp_thread_yield();
|
||||
else
|
||||
; // poll
|
||||
{} // poll
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user