Decrement the loop depth counter.
(depth: u32)
| 2151 | |
| 2152 | /// Decrement the loop depth counter. |
| 2153 | fn leave_loop(depth: u32) { |
| 2154 | LOOP_DEPTH.with(|c| c.set(depth - 1)); |
| 2155 | } |
| 2156 | |
| 2157 | /// Clamp `max_iterations` based on the current loop nesting depth. |
| 2158 | /// |
no test coverage detected