Cleaned up a few panic!()s

This commit is contained in:
2023-07-28 09:36:25 -07:00
parent 8fef5702b4
commit be043af4f0
7 changed files with 14 additions and 14 deletions

View File

@ -54,6 +54,6 @@ pub fn eval_function(f: &Function, args: &VecDeque<Expression>) -> Result<Expres
Function::ToBase
| Function::NoUnit
=> panic!()
=> unreachable!()
}
}