Skip to content

Commit

Permalink
report-coverage: Avoid triggering rust-lang/rust#79813 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed Jul 5, 2023
1 parent 4658042 commit a1c0bbc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crux-mir/report-coverage/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,9 @@ fn parse_branch(json: &Value) -> Result<BranchTrans, String> {
Ok(BranchTrans::DropFlag)
},

_ => die!("unknown tag {:?} for branch", tag),
_ => {
die!("unknown tag {:?} for branch", tag);
},
}
}

Expand Down

0 comments on commit a1c0bbc

Please sign in to comment.