Switch to debug_assert! for an assert! involving only constants
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
9722dd31e9
commit
848309a944
1 changed files with 1 additions and 1 deletions
|
@ -534,7 +534,7 @@ impl Zip64CentralDirectoryEnd {
|
|||
|
||||
const END_WINDOW_SIZE: usize = 2048;
|
||||
/* TODO: use static_assertions!() */
|
||||
assert!(END_WINDOW_SIZE > mem::size_of::<Magic>());
|
||||
debug_assert!(END_WINDOW_SIZE > mem::size_of::<Magic>());
|
||||
|
||||
const SIG_BYTES: [u8; mem::size_of::<Magic>()] =
|
||||
Magic::ZIP64_CENTRAL_DIRECTORY_END_SIGNATURE.to_le_bytes();
|
||||
|
|
Loading…
Add table
Reference in a new issue