Update panic tags of builtins

This commit is contained in:
Ayaz Hafiz 2022-11-22 17:20:17 -06:00
parent 32400e37e1
commit 4202352b19
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
3 changed files with 7 additions and 6 deletions

View file

@ -195,6 +195,7 @@ impl std::convert::TryFrom<u32> for PanicTagId {
fn try_from(value: u32) -> Result<Self, Self::Error> {
match value {
0 => Ok(PanicTagId::RocPanic),
1 => Ok(PanicTagId::UserPanic),
_ => Err(()),
}
}