Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Jun 14, 2024
1 parent 5c58f8f commit 3364cc0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/stats/univariate/resamples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ where
}

if let Some(ref v) = self.stage {
unsafe { mem::transmute::<&[_], _>(v) }
#[allow(clippy::missing_transmute_annotations)]
unsafe {
mem::transmute::<&[_], _>(v)
}
} else {
unreachable!();
}
Expand Down

0 comments on commit 3364cc0

Please sign in to comment.