diff --git a/src/util.rs b/src/util.rs index 9c834a8..3e65e14 100644 --- a/src/util.rs +++ b/src/util.rs @@ -105,9 +105,7 @@ impl ReadExt for T where T: io::Read { // This function must not be called with more than 4 bytes. pub fn atou16(bytes: &[u8]) -> Result { - if cfg!(debug_assertions) && bytes.len() >= 5 { - panic!("atou16 accepts up to 4 bytes"); - } + debug_assert!(bytes.len() <= 4, "atou16 accepts up to 4 bytes"); if bytes.len() == 0 { return Err(Error::InvalidFormat("Not a number")); }