We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26eef4c commit 4698492Copy full SHA for 4698492
lib/decompress/huf_decompress.rs
@@ -623,8 +623,11 @@ unsafe extern "C" fn HUF_decompress4X1_usingDTable_internal_fast_c_loop(
623
let mut ip = args.ip;
624
let mut op = args.op;
625
626
- debug_assert!(cfg!(target_endian = "little"));
627
- debug_assert!(cfg!(target_pointer_width = "64"));
+ #[allow(clippy::assertions_on_constants)]
+ {
628
+ debug_assert!(cfg!(target_endian = "little"));
629
+ debug_assert!(cfg!(target_pointer_width = "64"));
630
+ }
631
632
'out: loop {
633
/* Assert loop preconditions */
0 commit comments