chore: reorganize miri

This commit is contained in:
Jonathan Kelley 2022-12-16 20:41:31 -08:00
parent ea9245b0f7
commit 1ad86890a4

View file

@ -43,14 +43,14 @@ impl<'a, 'b> LazyNodes<'a, 'b> {
let mut slot = Some(val);
Self {
#[cfg(miri)]
inner: Box::new(move |f| {
#[cfg(not(miri))]
inner: smallbox!(move |f| {
let val = slot.take().expect("cannot call LazyNodes twice");
val(f)
}),
#[cfg(not(miri))]
inner: smallbox!(move |f| {
#[cfg(miri)]
inner: Box::new(move |f| {
let val = slot.take().expect("cannot call LazyNodes twice");
val(f)
}),