Merge rust-bitcoin/rust-bitcoin#2312: Add allow for out of bounds indexing
278229def5
Add allow for out of bounds indexing (yancy) Pull request description: Out of bounds indexing is a workaround for const panic until MSRV +1.57 ACKs for top commit: apoelstra: ACK278229def5
Happy New Year! Will merge based on CI one-ack carveout. Tree-SHA512: 5d525b682c28407e910ae45e8999fe6c95226d5079db917ccda296c68d4ed7a204c9ff1c5ea36d0ae647ee605780939028bf04a3948b1034c71e88cf6f03c782
This commit is contained in:
commit
26195570d9
|
@ -67,6 +67,8 @@ impl Weight {
|
||||||
#[allow(unconditional_panic)]
|
#[allow(unconditional_panic)]
|
||||||
// disabling this lint until panic!() can be used.
|
// disabling this lint until panic!() can be used.
|
||||||
#[allow(clippy::let_unit_value)]
|
#[allow(clippy::let_unit_value)]
|
||||||
|
// disabling this lint until panic!() can be used.
|
||||||
|
#[allow(clippy::out_of_bounds_indexing)]
|
||||||
let _int_overflow_scaling_weight = [(); 0][1];
|
let _int_overflow_scaling_weight = [(); 0][1];
|
||||||
Weight(0)
|
Weight(0)
|
||||||
}
|
}
|
||||||
|
|
|
@ -594,6 +594,8 @@ impl Amount {
|
||||||
#[allow(unconditional_panic)]
|
#[allow(unconditional_panic)]
|
||||||
// disabling this lint until panic!() can be used.
|
// disabling this lint until panic!() can be used.
|
||||||
#[allow(clippy::let_unit_value)]
|
#[allow(clippy::let_unit_value)]
|
||||||
|
// disabling this lint until panic!() can be used.
|
||||||
|
#[allow(clippy::out_of_bounds_indexing)]
|
||||||
let _int_overflow_converting_btc_to_sats = [(); 0][1];
|
let _int_overflow_converting_btc_to_sats = [(); 0][1];
|
||||||
Amount(0)
|
Amount(0)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue