File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,6 @@ borrow_deref_ref = "allow"
172
172
clone_on_copy = " allow"
173
173
derivable_impls = " allow"
174
174
derived_hash_with_manual_eq = " allow"
175
- double_parens = " allow"
176
175
explicit_auto_deref = " allow"
177
176
field_reassign_with_default = " allow"
178
177
forget_non_drop = " allow"
Original file line number Diff line number Diff line change @@ -272,6 +272,7 @@ const STACK_OFFSET: usize = 1 << 30;
272
272
const HEAP_OFFSET : usize = 1 << 29 ;
273
273
274
274
impl Address {
275
+ #[ allow( clippy:: double_parens) ]
275
276
fn from_bytes ( it : & [ u8 ] ) -> Result < Self > {
276
277
Ok ( Address :: from_usize ( from_bytes ! ( usize , it) ) )
277
278
}
@@ -1661,6 +1662,7 @@ impl Evaluator<'_> {
1661
1662
} )
1662
1663
}
1663
1664
1665
+ #[ allow( clippy:: double_parens) ]
1664
1666
fn allocate_const_in_heap ( & mut self , locals : & Locals , konst : & Const ) -> Result < Interval > {
1665
1667
let ty = & konst. data ( Interner ) . ty ;
1666
1668
let chalk_ir:: ConstValue :: Concrete ( c) = & konst. data ( Interner ) . value else {
You can’t perform that action at this time.
0 commit comments