()
| 1440 | |
| 1441 | #[cfg(feature = "decode")] |
| 1442 | pub(crate) unsafe fn unreachable_unchecked() -> ! { |
| 1443 | #[cfg(debug_assertions)] |
| 1444 | unreachable!(); |
| 1445 | |
| 1446 | #[cfg(not(debug_assertions))] |
| 1447 | unsafe { |
| 1448 | core::hint::unreachable_unchecked() |
| 1449 | } |
| 1450 | } |
no outgoing calls
no test coverage detected