Fix warnings in specialize_types

This commit is contained in:
Agus Zubiaga 2024-11-23 02:20:47 -03:00
parent 2e96aca0fd
commit 2974dcbc18
No known key found for this signature in database
17 changed files with 52 additions and 56 deletions

View file

@ -11,10 +11,10 @@ pub use help_parse::ParseExpr;
pub use help_solve::{SolvedExpr, SolvedExprOut};
pub use help_specialize::{SpecializedExpr, SpecializedExprOut};
pub fn can_expr<'a>(input: &'a str) -> CanExprOut {
pub fn can_expr(input: &str) -> CanExprOut {
CanExpr::default().can_expr(input)
}
pub fn solve_expr<'a>(input: &'a str) -> SolvedExprOut {
pub fn solve_expr(input: &str) -> SolvedExprOut {
SolvedExpr::default().solve_expr(input)
}