chore: allow transmute annotations (#7494)

This commit is contained in:
Matthias Seitz
2024-04-06 08:49:38 +02:00
committed by GitHub
parent b89af430e2
commit 15131c723e
3 changed files with 4 additions and 1 deletions

View File

@ -261,7 +261,7 @@ impl Command {
_ => return Ok(()),
};
if let Some(unwind_stage) = &unwind_stage {
assert_eq!(exec_stage.type_id(), unwind_stage.type_id());
assert_eq!((*exec_stage).type_id(), (**unwind_stage).type_id());
}
let checkpoint = provider_rw.get_stage_checkpoint(exec_stage.id())?.unwrap_or_default();