2022-03-14 12:02:53 +01:00
|
|
|
error: busy-waiting loop should at least have a spin loop hint
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/missing_spin_loop_no_std.rs:12:37
|
2022-03-14 12:02:53 +01:00
|
|
|
|
|
|
|
|
LL | while b.load(Ordering::Acquire) {}
|
2023-07-17 10:19:29 +02:00
|
|
|
| ^^ help: try: `{ core::hint::spin_loop() }`
|
2022-03-14 12:02:53 +01:00
|
|
|
|
|
|
|
|
= note: `-D clippy::missing-spin-loop` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::missing_spin_loop)]`
|
2022-03-14 12:02:53 +01:00
|
|
|
|
2023-11-21 17:08:42 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-03-14 12:02:53 +01:00
|
|
|
|