Do not raise interp errors from the scalar int module

This commit is contained in:
oli 2020-11-01 17:30:33 +00:00
parent 500af76831
commit dad0036cb4
3 changed files with 23 additions and 20 deletions

View file

@ -71,7 +71,7 @@ macro_rules! throw_inval {
#[macro_export]
macro_rules! throw_ub {
($($tt:tt)*) => { Err::<!, _>($crate::err_ub!($($tt)*))? };
($($tt:tt)*) => { Err::<!, _>(err_ub!($($tt)*))? };
}
#[macro_export]