Fix needless borrow in iced_wgpu and iced_tiny_skia
This commit is contained in:
parent
73dca5e323
commit
c8d79a5cd9
2 changed files with 2 additions and 2 deletions
|
|
@ -391,7 +391,7 @@ impl Cache {
|
|||
|
||||
return (
|
||||
*measured_hash,
|
||||
self.entries.get_mut(&measured_hash).unwrap(),
|
||||
self.entries.get_mut(measured_hash).unwrap(),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue